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

19 lines
271 B
Plaintext

###########################################
#
# Key Input Test
#
# Prompt for a keypress,
# then display its hex digit onscreen.
#
###########################################
: main
v0 := 20
v1 := 10
loop
v2 := key
clear
i := hex v2
sprite v0 v1 5
again