mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
66fb5a29bb
Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
22 lines
330 B
ArmAsm
22 lines
330 B
ArmAsm
.section .text
|
|
.global irq_vector
|
|
.global reset_vector
|
|
|
|
/* The reset vector, jumps to startup code */
|
|
reset_vector:
|
|
j __start
|
|
|
|
/* Interrupt handler */
|
|
.balign 16
|
|
irq_vector:
|
|
ret
|
|
|
|
__start:
|
|
/* setup the stack pointer */
|
|
la sp, __stack_top
|
|
call ulp_riscv_rescue_from_monitor
|
|
call main
|
|
call ulp_riscv_shutdown
|
|
loop:
|
|
j loop
|