aboutsummaryrefslogtreecommitdiff
path: root/Debugger/debug_stub.h
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-07-13 07:50:49 +0800
committerTat-Chee Wan (USM)2011-07-13 07:50:49 +0800
commitb14d454a454ffc35a94c3f99e176c40a68b31c0f (patch)
treeed94ea085d35f2dfea37bf258f6161285015d6ed /Debugger/debug_stub.h
parent47ce28faf2797edf0c3bc7b10f7ae453d1f6a152 (diff)
remote autobreakpoint code from master branch
Autobreakpoint support is not robust. It is removed from the master branch. The autobreakpoint_stub branch contains the old autobreakpoint code.
Diffstat (limited to 'Debugger/debug_stub.h')
-rw-r--r--Debugger/debug_stub.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Debugger/debug_stub.h b/Debugger/debug_stub.h
index 11b348e..6807ac1 100644
--- a/Debugger/debug_stub.h
+++ b/Debugger/debug_stub.h
@@ -34,12 +34,12 @@
#endif
#define BKPT32_ENUM_MASK 0x000FFF0F /* ARM BKPT Enum Mask */
-#define BKPT32_AUTO_BKPT 0x00080000 /* ARM BKPT Auto-Step Flag (for CONT support) */
+#define BKPT32_AUTO_BKPT 0x00080000 /* RESERVED: ARM BKPT Auto-Step Flag (for CONT support) */
#define BKPT32_MANUAL_BKPT 0x0007FF0F /* Manually inserted ARM Breakpoint */
#define BKPT16_INSTR 0xBE00 /* Thumb BKPT instruction */
#define BKPT16_ENUM_MASK 0x00FF /* Thumb BKPT Enum Mask */
-#define BKPT16_AUTO_BKPT 0x0080 /* Thumb BKPT Auto-Step Flag (for CONT support) */
+#define BKPT16_AUTO_BKPT 0x0080 /* RESERVED: Thumb BKPT Auto-Step Flag (for CONT support) */
#define BKPT16_MANUAL_BKPT 0x007F /* Manually inserted Thumb Breakpoint */
/*@}*/