Finally, this.
Cat's Eye Technologies
8 years ago
1 changed file(s) with
14 addition(s)
and
0 deletion(s)
.
Raw diff
Collapse all
Expand all
+14
-0
eg/screen3.60pical
less
more
0
assign byte table screen 1024
1
reserve byte value
2
routine main {
3
lda #0
4
sta value
5
ldx #0
6
repeat bne {
7
lda value
8
inc value
9
sta screen, x
10
inx
11
cpx #80
12
}
13
}