summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/crt0.S6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/crt0.S b/firmware/crt0.S
index 65577e02b9..4459f2eb15 100644
--- a/firmware/crt0.S
+++ b/firmware/crt0.S
@@ -360,6 +360,12 @@ vectors:
360 mov.l @(r0,r2),r3 360 mov.l @(r0,r2),r3
361 mov.l r3,@(r0,r1) 361 mov.l r3,@(r0,r1)
362 362
363 /* Move the UserBreak vector as well (12) */
364 mov #12,r0
365 shll2 r0
366 mov.l @(r0,r2),r3
367 mov.l r3,@(r0,r1)
368
363 /* Move the breakpoint trap vector (32) */ 369 /* Move the breakpoint trap vector (32) */
364 mov #32,r0 370 mov #32,r0
365 shll2 r0 371 shll2 r0