uskel/include/main_exit.s
2023-10-31 21:07:03 +01:00

11 lines
218 B
ArmAsm

.ifndef _main_exit_s_file
_main_exit_s_file:
# exitcode -> ||
.thunkcode main_exit
mov 010(%rsi), %rdi # result INT goes to syscall exitcode
mov $60, %rax # exit=60
syscall # exit %rdi
.endif # _main_exit_s_file