1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-10 00:28:59 +00:00
SixtyPical/eg/cinv.60p
2014-04-03 22:07:19 +01:00

16 lines
213 B
Plaintext

assign byte screen 1024
assign vector cinv 788
reserve vector save_cinv
routine main {
sei {
copy cinv save_cinv
copy routine our_cinv to cinv
}
}
routine our_cinv {
inc screen
jmp (save_cinv)
}