Files

18 lines
199 B
ArmAsm
Raw Permalink Normal View History

2026-02-19 19:31:15 +00:00
.code64
.global _start
.type _start, @function
.extern main
.type main, @function
.extern task_exit
.type task_exit, @function
2026-02-19 19:31:15 +00:00
_start:
call main
mov %rax, %rdi
call task_exit
2026-02-19 19:31:15 +00:00
1: pause
jmp 1b