Files
rosetta/lib/libc/runtime/x86_64/crt0.s

17 lines
257 B
ArmAsm
Raw Normal View History

2026-02-19 19:28:50 +00:00
.code64
.global _start
.type _start, @function
.extern main
.type main, @function
_start:
# Args (as provided by the ABI)
# %rdi: int argc
# %rsi: const char **argv
# %rdx: kern_handle_t task
# %rcx: kern_handle_t address_space
call main
1: jmp 1b