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

21 lines
169 B
Plaintext

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