restructure

This commit is contained in:
nub31
2025-06-12 23:37:28 +02:00
parent 7f6a825c01
commit bf4db69f86
73 changed files with 43 additions and 40 deletions

View File

@@ -0,0 +1,12 @@
.intel_syntax noprefix
.extern main
.section .text
.global _start
_start:
mov rdi, rsp
# func main(args: []^string): i64
call main
mov rdi, rax
mov rax, 60
syscall