amd64-postfix/postfix.s

8 lines
90 B
ArmAsm

.text
.global _start
_start:
## Exit with code 0
mov $60, %rax
mov $0, %rdi
syscall