summaryrefslogtreecommitdiff
path: root/software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c')
-rw-r--r--software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c
index 20a6ba9..791693e 100644
--- a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c
+++ b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c
@@ -22,9 +22,9 @@ You should have received a copy of the GNU General Public License
along with the OCT6100 GPL API; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-$Octasic_Release: OCT612xAPI-01.03.02 $
+$Octasic_Release: OCT612xAPI-01.03.03 $
-$Octasic_Revision: 76 $
+$Octasic_Revision: 77 $
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
@@ -1601,20 +1601,20 @@ UINT32 Oct6100DebugCoreDumpMemory(
ReadBurstParams.ulReadAddress = pSharedInfo->DebugInfo.ulLastMemoryOffset;
/* Some internal memory regions cannot be read. Check for these here. */
- if ( ( ReadBurstParams.ulReadAddress >= 0x14a80 )
- && ( ReadBurstParams.ulReadAddress < 0x26000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x26640 )
- && ( ReadBurstParams.ulReadAddress < 0x28000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x2AA00 )
- && ( ReadBurstParams.ulReadAddress < 0x220000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x235000 )
- && ( ReadBurstParams.ulReadAddress < 0x240000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x255000 )
- && ( ReadBurstParams.ulReadAddress < 0x260000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x26a800 )
- && ( ReadBurstParams.ulReadAddress < 0x280000 ) ||
- ( ReadBurstParams.ulReadAddress >= 0x285400 )
- && ( ReadBurstParams.ulReadAddress < 0x8000000 ))
+ if ( (( ReadBurstParams.ulReadAddress >= 0x14a80 )
+ && ( ReadBurstParams.ulReadAddress < 0x26000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x26640 )
+ && ( ReadBurstParams.ulReadAddress < 0x28000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x2AA00 )
+ && ( ReadBurstParams.ulReadAddress < 0x220000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x235000 )
+ && ( ReadBurstParams.ulReadAddress < 0x240000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x255000 )
+ && ( ReadBurstParams.ulReadAddress < 0x260000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x26a800 )
+ && ( ReadBurstParams.ulReadAddress < 0x280000 )) ||
+ (( ReadBurstParams.ulReadAddress >= 0x285400 )
+ && ( ReadBurstParams.ulReadAddress < 0x8000000 )))
{
/* Region cannot be read. */
Oct6100UserMemSet( pSharedInfo->MiscVars.ausSuperArray, 0, cOCT6100_INTERNAL_SUPER_ARRAY_SIZE * sizeof( UINT16 ) );