Files
c_soft/riscv/start.S

10 lines
113 B
ArmAsm
Raw Normal View History

2025-04-17 11:14:53 +08:00
.section .init
.globl _start
.type _start,@function
2025-04-17 15:35:32 +08:00
.extern main
2025-04-17 11:14:53 +08:00
_start:
2025-04-17 15:35:32 +08:00
la sp, _sp
j main