summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTC Wan2010-12-16 17:02:55 +0800
committerTC Wan2010-12-16 17:02:55 +0800
commit35c9bf7fc8e5f5a8176c9365566df6a9c9555494 (patch)
tree447ffb892b0b20195f12be60654e0841a4a6d345
parent7da686d7774215a4d66e0b522e548bce5b70d189 (diff)
correct name of steve furber's book
-rw-r--r--Debugger/debug_stub.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debugger/debug_stub.h b/Debugger/debug_stub.h
index 90294f0..0b1fee4 100644
--- a/Debugger/debug_stub.h
+++ b/Debugger/debug_stub.h
@@ -104,7 +104,7 @@
#ifdef __ARM6OR7__
#define BKPT32_INSTR 0xE7200070 /* ARM6 and ARM7 does not trap unused opcodes (BKPT overlap with control instructions), \
- CPU has unpredictable behavior. Ref: Steve Furber, ARM SoC 2nd Ed, pg. 143 */
+ CPU has unpredictable behavior. Ref: Steve Furber, ARM SoC Architecture 2nd Ed, pg. 143 */
#else
#define BKPT32_INSTR 0xE1200070 /* ARM BKPT instruction, will work in ARMv5T and above */
#endif