Files
GroundPY/out.asm

24 lines
311 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-10 18:56:45 +10:00
sub rsp, 8
2025-09-10 20:45:22 +10:00
mov rdi, 2
mov rsi, 3
call add
add rsp, 16
push rax
mov rax, 60
mov rdi, [rsp + 0]
syscall
2025-09-10 20:45:22 +10:00
add:
2025-09-10 18:56:45 +10:00
push rbp
mov rbp, rsp
mov rax, rdi
2025-09-10 20:45:22 +10:00
mov rbx, rsi
add rax, rbx
2025-09-10 18:56:45 +10:00
pop rbp
2025-09-10 07:30:58 +10:00
ret