tfv: use WASD instead of IJKM for movement

make consistent with Linux version
This commit is contained in:
Vince Weaver 2017-11-16 15:37:00 -05:00
parent 26fbd6db55
commit 9038593ef1
2 changed files with 8 additions and 8 deletions

View File

@ -100,7 +100,7 @@ flying_keyboard:
skipskip:
cmp #('I')
cmp #('W')
bne check_down
;===========
@ -117,7 +117,7 @@ skipskip:
sta SPLASH_COUNT
check_down:
cmp #('M')
cmp #('S')
bne check_left
;=============
@ -137,7 +137,7 @@ splashy:
sta SPLASH_COUNT
check_left:
cmp #('J')
cmp #('A')
bne check_right
;=============
@ -160,7 +160,7 @@ turn_left:
dec ANGLE
check_right:
cmp #('K')
cmp #('D')
bne check_speedup
;==============

View File

@ -270,19 +270,19 @@ figure_out_key:
check_right_arrow:
cmp #$15
bne check_left_arrow
lda #'K'
lda #'D'
check_left_arrow:
cmp #$08
bne check_up_arrow
lda #'J'
lda #'A'
check_up_arrow:
cmp #$0B
bne check_down_arrow
lda #'I'
lda #'W'
check_down_arrow:
cmp #$0A
bne check_escape
lda #'M'
lda #'S'
check_escape:
cmp #$1B
bne save_key