From a1f49718aee378fa075303c86106309091d56b80 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Mon, 31 Jan 2022 19:05:50 -0700 Subject: Break exceptions off to own files --- src/exceptions/fiq.S | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/exceptions/fiq.S (limited to 'src/exceptions/fiq.S') diff --git a/src/exceptions/fiq.S b/src/exceptions/fiq.S new file mode 100644 index 0000000..f323a02 --- /dev/null +++ b/src/exceptions/fiq.S @@ -0,0 +1,26 @@ +.section ".text.exceptions" +.globl fiq +fiq: + cpsid aif + stmfd sp!, {r0-r12,lr} + bl c_fiq_handler + cmp r0, #1 + bne 1f + mrs r1, spsr + and r1, r1, #0x1f + cmp r1, #0x10 + bne 1f + ldmfd sp!, {r0-r12,lr} + sub lr, #4 + push {r3} + ldr r3, =irqlr + str lr, [r3, #0] + pop {r3} + cps #0x13 + b schedule +1: + ldmfd sp!, {r0-r12,lr} + subs pc, lr, #4 + +.section .data +fiq_msg: .asciz "FIQ\n" -- cgit v1.2.1