1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-02 18:41:35 +00:00

Finally, this.

This commit is contained in:
Cat's Eye Technologies 2014-04-01 23:27:54 +01:00
parent 2e186c763d
commit c80591f7f5

14
eg/screen3.60pical Normal file
View File

@ -0,0 +1,14 @@
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
}
}