gdbstub/start.s

15 lines
276 B
ArmAsm
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# _start ENTRY(_start)
.section .text.entry
.global _start
_start:
# 使 stack_top
la sp, stack_top
# main
call main
# main
loop:
j loop