mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-29 03:51:35 +00:00
12 lines
148 B
Plaintext
12 lines
148 B
Plaintext
|
assign byte screen 1024
|
||
|
reserve byte zero
|
||
|
routine main {
|
||
|
ldy zero
|
||
|
repeat bne {
|
||
|
inc screen
|
||
|
dey
|
||
|
cpy zero
|
||
|
}
|
||
|
sty screen
|
||
|
}
|