mirror of
https://github.com/NaC-L/Mergen.git
synced 2026-06-11 09:44:31 +00:00
11 lines
107 B
NASM
11 lines
107 B
NASM
section .text
|
|
|
|
global main
|
|
main:
|
|
xor rcx, rcx
|
|
do_loop:
|
|
add rax, rax
|
|
inc rcx
|
|
cmp rcx, 1000
|
|
jbe do_loop
|
|
ret |