Files
mop3/init/init.S
kamkow1 e52268cd8e
All checks were successful
Build documentation / build-and-deploy (push) Successful in 26s
First Hello world syscall
2026-01-03 02:04:09 +01:00

9 lines
77 B
ArmAsm

.global _start
_start:
pushq $123
addq $8, %rsp
syscall
jmp _start