serv/sw/external_interrupt_wfi.S
Alfred Persson Forsberg 41c0d44e5f boilerplate for external interrupts
Signed-off-by: Alfred Persson Forsberg <cat@catcream.org>
2025-05-11 23:20:31 +02:00

17 lines
350 B
ArmAsm

.section .text
.global _start
.global handler
_start:
la t0, handler
csrw mtvec, t0
li t0, 0x8
csrrs x0, mstatus, t0
li t0, 0x800
csrrs x0, mie, t0
wfi
handler:
li t0, 0x8
csrrc x0, mstatus, t0
li t0, 0x800
csrrc x0, mie, t0
mret