mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 01:32:13 +00:00
11 lines
126 B
Plaintext
11 lines
126 B
Plaintext
assign byte screen 1024
|
|
routine main {
|
|
ldy #0
|
|
repeat bne {
|
|
inc screen
|
|
dey
|
|
cpy #0
|
|
}
|
|
sty screen
|
|
}
|