Files
mop3/init/init.S
kamkow1 cf04e3db18
All checks were successful
Build documentation / build-and-deploy (push) Successful in 43s
proc_quit () and proc_test () syscalls
2026-01-03 12:21:56 +01:00

13 lines
122 B
ArmAsm

.global _start
_start:
pushq $123
addq $8, %rsp
movq $2, %rax
syscall
movq $1, %rax
syscall
jmp _start