Specify the ldh instruction, don't turn ld into ldh

This commit is contained in:
Rangi 2020-07-06 19:03:05 -04:00
parent c480632d54
commit 772fcc7588
219 changed files with 2556 additions and 2556 deletions

View file

@ -6,9 +6,9 @@ ReadJoypad::
ld a, 1 << 5 ; select direction keys
ld c, 0
ld [rJOYP], a
ldh [rJOYP], a
REPT 6
ld a, [rJOYP]
ldh a, [rJOYP]
ENDR
cpl
and %1111
@ -16,18 +16,18 @@ ReadJoypad::
ld b, a
ld a, 1 << 4 ; select button keys
ld [rJOYP], a
ldh [rJOYP], a
REPT 10
ld a, [rJOYP]
ldh a, [rJOYP]
ENDR
cpl
and %1111
or b
ld [hJoyInput], a
ldh [hJoyInput], a
ld a, 1 << 4 + 1 << 5 ; deselect keys
ld [rJOYP], a
ldh [rJOYP], a
ret
Joypad::