This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/src/cli/Runtime/entry.s
2025-06-12 23:57:59 +02:00

13 lines
189 B
ArmAsm

.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