prog8/python/tinyvm/examples/testvm-timer.txt

23 lines
390 B
Plaintext
Raw Normal View History

2018-03-03 11:13:25 +00:00
; source code for a tinyvm program for the timer
%block b1_timer
%vardefs
2018-03-04 15:36:05 +00:00
var byte teller_timer 32
2018-03-03 11:13:25 +00:00
const word screenloc_timer 1028
const byte one_timer 1
%end_vardefs
%instructions
push teller_timer
push one_timer
add
dup
pop teller_timer
push screenloc_timer
swap
syscall memwrite_word
return 0
%end_instructions
%subblocks
%end_subblocks
%end_block ;b1_timer