mirror of
https://github.com/catseye/SixtyPical.git
synced 2025-02-18 13:31:08 +00:00
16 lines
218 B
Plaintext
16 lines
218 B
Plaintext
assign byte screen 1024
|
|
assign vector cinv 788
|
|
reserve vector save_cinv
|
|
|
|
routine main {
|
|
with sei {
|
|
copy cinv save_cinv
|
|
copy routine our_cinv to cinv
|
|
}
|
|
}
|
|
|
|
routine our_cinv {
|
|
inc screen
|
|
jmp (save_cinv)
|
|
}
|