gdbstub/start.s

15 lines
276 B
ArmAsm
Raw Normal View History

2025-09-20 17:55:30 +08:00
# _start ENTRY(_start)
.section .text.entry
.global _start
_start:
# 使 stack_top
la sp, stack_top
# main
call main
# main
loop:
j loop