Trevor Merritt e29ac45c84 scroll down works on CHIP-8 and High-Res modes
scroll left and right work in stdef and hidef
adds octo test roms
adds schip fonts to memory
2024-10-27 11:41:25 -04:00

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