mirror of
https://github.com/Noratrieb/crapderive.git
synced 2026-01-14 08:35:09 +01:00
13 lines
No EOL
86 B
NASM
13 lines
No EOL
86 B
NASM
mov r0, 3
|
|
cmp r0, 8
|
|
je true
|
|
jmp false
|
|
true:
|
|
jmp exit
|
|
|
|
// loop
|
|
false:
|
|
jmp false
|
|
|
|
|
|
exit: |