mirror of
https://github.com/NaC-L/Mergen.git
synced 2026-06-11 09:44:31 +00:00
8 lines
68 B
NASM
8 lines
68 B
NASM
section .text
|
|
|
|
global main
|
|
main:
|
|
mov rax, 10
|
|
push rax
|
|
call [rsp]
|
|
ret |