Files
pasm/examples/test.pasm
ALittlePatate a97fde9f86 first commit of the recode
70% of the code was re-writter from scratch
2024-01-18 16:01:04 +01:00

16 lines
117 B
Plaintext

iterate:
add a1, 1
cmp a1, 42
jne iterate
ret
test:
push a
push 1
call put
ret
main:
mov a1, 0
jmp iterate
jmp test