scroll left and right work in stdef and hidef adds octo test roms adds schip fonts to memory
24 lines
374 B
Plaintext
24 lines
374 B
Plaintext
###########################################
|
|
#
|
|
# Big Font
|
|
#
|
|
# High resolution font test program.
|
|
# Draw the complete SuperChip high res
|
|
# hex character set.
|
|
#
|
|
###########################################
|
|
|
|
: main
|
|
hires
|
|
loop
|
|
i := bighex v0
|
|
sprite v1 v2 10
|
|
v1 += 9
|
|
v0 += 1
|
|
if v0 == 8 then v1 := 0
|
|
if v0 == 8 then v2 += 11
|
|
if v0 != 16 then
|
|
again
|
|
|
|
loop again
|