mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-25 23:49:17 +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
|
|
}
|