19 lines
284 B
NASM
19 lines
284 B
NASM
; ~~~ Auto generated by the GroundPY compiler for Linux x86_64 targets. ~~~
|
|
|
|
section .data
|
|
section .text
|
|
global _start
|
|
_start:
|
|
push 0
|
|
push 1
|
|
.loop:
|
|
mov rax, [rsp + 8]
|
|
add rax, 1
|
|
mov QWORD [rsp + 8], rax
|
|
mov rax, 100000000
|
|
cmp rax, [rsp + 8]
|
|
jg .loop
|
|
mov rax, 60
|
|
mov rdi, 0
|
|
syscall
|