scroll left and right work in stdef and hidef adds octo test roms adds schip fonts to memory
19 lines
271 B
Plaintext
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
|