13 lines
164 B
ArmAsm
13 lines
164 B
ArmAsm
.global irq_entry
|
|
.global trap_entry
|
|
|
|
.extern rv32_exception_entry
|
|
|
|
.align 2
|
|
irq_entry:
|
|
j rv32_exception_entry
|
|
|
|
.align 2
|
|
trap_entry:
|
|
j rv32_exception_entry
|