6 lines
104 B
ArmAsm
6 lines
104 B
ArmAsm
.global _start
|
|
_start:
|
|
mov $60, %rax # sys_exit (64-bit)
|
|
mov $0, %rdi # status 0
|
|
syscall
|