Initial Commit

This commit is contained in:
kaguya
2026-04-14 22:52:24 -04:00
commit 426ad76676
184 changed files with 11033 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
.global _start
.section .text
_start:
call main
mov $60, %rax # exit syscall (you define this later)
xor %rdi, %rdi
syscall
hang:
jmp hang