Files
GroundPY/out.asm

20 lines
260 B
NASM

; ~~~ Auto generated by the GroundPY compiler for Linux x86_64 targets. ~~~
section .data
section .text
global _start
_start:
mov rdi, 1
mov rsi, 4
call add
mov rdi, rax
mov rax, 60
syscall
add:
push rbp
mov rbp, rsp
mov rax, rdi
add rax, rsi
pop rbp
ret