All checks were successful
Build documentation / build-and-deploy (push) Successful in 43s
13 lines
122 B
ArmAsm
13 lines
122 B
ArmAsm
.global _start
|
|
_start:
|
|
pushq $123
|
|
addq $8, %rsp
|
|
|
|
movq $2, %rax
|
|
syscall
|
|
|
|
movq $1, %rax
|
|
syscall
|
|
|
|
jmp _start
|