mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-23 08:36:06 +00:00
15 lines
211 B
Plaintext
15 lines
211 B
Plaintext
|
assign byte table screen 1024
|
||
|
reserve byte value
|
||
|
routine main {
|
||
|
lda #0
|
||
|
sta value
|
||
|
ldx #0
|
||
|
repeat bne {
|
||
|
lda value
|
||
|
inc value
|
||
|
sta screen, x
|
||
|
inx
|
||
|
cpx #80
|
||
|
}
|
||
|
}
|