mirror of
https://github.com/NaC-L/Mergen.git
synced 2026-05-12 09:40:34 +00:00
10 lines
100 B
NASM
10 lines
100 B
NASM
section .text
|
|
|
|
global main
|
|
main:
|
|
push rax
|
|
push rcx
|
|
and rcx, 1
|
|
mov rax, [rsp+rcx*8]
|
|
add rsp, 16
|
|
ret |