You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
316 B
14 lines
316 B
5 months ago
|
#include "cpuport.h"
|
||
|
|
||
|
.globl rt_hw_do_after_save_above
|
||
|
.type rt_hw_do_after_save_above,@function
|
||
|
rt_hw_do_after_save_above:
|
||
|
addi sp, sp, -4
|
||
|
STORE ra, 0 * REGBYTES(sp)
|
||
|
csrr a0, mcause
|
||
|
csrr a1, mepc
|
||
|
mv a2, sp
|
||
|
call handle_trap
|
||
|
LOAD ra, 0 * REGBYTES(sp)
|
||
|
addi sp, sp, 4
|
||
|
ret
|