Files
rosetta/sys/ld/arch/x86_64/start.S

16 lines
157 B
ArmAsm
Raw Normal View History

2026-02-19 19:30:07 +00:00
.code64
.global _start
.type _start, @function
.extern main
.type main, @function
.extern exit
.type exit, @function
_start:
call main
1: pause
jmp 1b