aboutsummaryrefslogtreecommitdiff
path: root/src/exceptions/data.S
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-17 21:35:21 -0700
committerChristian Cunningham <cc@localhost>2022-03-17 21:35:21 -0700
commitfc10f6fa6d4ae2a0d6e17ea62594b8b1f6700aeb (patch)
tree542f52ba8ce1295af07be7f95c530b511c2170ab /src/exceptions/data.S
parent249f526998a319a9282a16eb0d0b2907051c22da (diff)
Removed unneeded drawing
Diffstat (limited to 'src/exceptions/data.S')
-rw-r--r--src/exceptions/data.S9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/exceptions/data.S b/src/exceptions/data.S
index e3add71..fe33215 100644
--- a/src/exceptions/data.S
+++ b/src/exceptions/data.S
@@ -3,11 +3,7 @@
data:
cpsid aif
stmfd sp!, {r0-r12,lr}
- mov r4, lr
- mov r0, #0
- mov r1, #15
- ldr r2, =data_msg
- bl draw_string
+ ldr r4, [lr, #-4]
// Output return address
mov r0, #80
mov r1, #0
@@ -31,6 +27,3 @@ data:
bl draw_hex32
ldmfd sp!, {r0-r12,lr}
subs pc, lr, #4 // Should be 8 once I can actually handle the abort
-
-.section .data
-data_msg: .asciz "Data Handler"