Files
GroundPY/out.asm
2025-09-10 20:45:22 +10:00

24 lines
311 B
NASM

; ~~~ Auto generated by the GroundPY compiler for Linux x86_64 targets. ~~~
section .data
section .text
global _start
_start:
sub rsp, 8
mov rdi, 2
mov rsi, 3
call add
add rsp, 16
push rax
mov rax, 60
mov rdi, [rsp + 0]
syscall
add:
push rbp
mov rbp, rsp
mov rax, rdi
mov rbx, rsi
add rax, rbx
pop rbp
ret