Files
GroundPY/out.asm

20 lines
260 B
NASM
Raw Normal View History

2025-09-06 21:18:22 +10:00
; ~~~ Auto generated by the GroundPY compiler for Linux x86_64 targets. ~~~
2025-09-04 07:45:20 +10:00
section .data
section .text
2025-09-02 06:42:58 +10:00
global _start
_start:
2025-09-12 06:28:45 +10:00
mov rdi, 1
mov rsi, 4
call add
2025-09-12 06:28:45 +10:00
mov rdi, rax
mov rax, 60
syscall
add:
2025-09-10 18:56:45 +10:00
push rbp
mov rbp, rsp
mov rax, rdi
add rax, rsi
2025-09-10 18:56:45 +10:00
pop rbp
2025-09-10 07:30:58 +10:00
ret