This commit is contained in:
nub31
2025-06-13 00:07:14 +02:00
parent f458f95b5a
commit bf7995e12c
64 changed files with 167 additions and 176 deletions

12
src/CLI/Runtime/entry.s Normal file
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