RosettaCodeData/Task/Keyboard-input-Keypress-check/6502-Assembly/keyboard-input-keypress-check.6502

21 lines
169 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
define sysLastKey $ff
main:
jsr getKeyPress
;put the rest of your program here.
jsr delay
jmp main
getKeyPress:
lda $ff
sta $00
rts
delay:
nop
nop
dex
bne delay
rts