11 lines
218 B
ArmAsm
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
|