platform-apple2: added keycodes for IIe up/down keys

This commit is contained in:
Rob McMullen 2018-07-20 13:25:47 -07:00
parent 2648b359e5
commit 4b0c7ead49
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,8 @@ userinput lda KEYBOARD
;sta KBDSTROBE
check_up cmp #$8d ; up arrow
beq input_up
cmp #$8b ; up arrow IIe
beq input_up
cmp #$c1 ; 'A' key
beq input_up
@ -77,6 +79,8 @@ input_up lda #TILE_UP
rts
check_down cmp #$af ; down arrow
beq input_down
cmp #$8a ; down arrow IIe
beq input_down
cmp #$bb ; ';' key (dvorak keyboards!)
beq input_down