24 lines
215 B
Plaintext
24 lines
215 B
Plaintext
; Simple counter example
|
|
PUSH 0
|
|
STORE counter
|
|
|
|
PUSH 10
|
|
STORE max
|
|
|
|
.loop:
|
|
LOAD counter
|
|
LOAD max
|
|
LT
|
|
JUMP_IF_FALSE .end
|
|
|
|
LOAD counter
|
|
PUSH 1
|
|
ADD
|
|
STORE counter
|
|
|
|
JUMP .loop
|
|
|
|
.end:
|
|
LOAD counter
|
|
HALT
|