mirror of
https://github.com/NaC-L/Mergen.git
synced 2026-05-12 09:40:34 +00:00
15 lines
128 B
NASM
15 lines
128 B
NASM
section .text
|
|
|
|
global main
|
|
main:
|
|
xor rcx, rcx
|
|
push rax
|
|
|
|
do_loop:
|
|
add [rsp], rax
|
|
inc rcx
|
|
cmp rcx, 1000
|
|
jbe do_loop
|
|
|
|
pop rax
|
|
ret |