1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-25 19:28:59 +00:00
SixtyPical/eg/screen3.60p

15 lines
211 B
Plaintext
Raw Normal View History

2014-04-01 22:27:54 +00:00
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
}
}