7 lines
87 B
ArmAsm
7 lines
87 B
ArmAsm
.section .text
|
|
.global _start
|
|
_start:
|
|
mov $12, %rax
|
|
mov $123, %rdi
|
|
syscall
|