mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Split out joypad and overworld code from home.asm.
This commit is contained in:
parent
188ac8a9b4
commit
93b1361dff
39
home/joypad.asm
Normal file
39
home/joypad.asm
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
ReadJoypad::
|
||||||
|
; Poll joypad input.
|
||||||
|
; Unlike the hardware register, button
|
||||||
|
; presses are indicated by a set bit.
|
||||||
|
|
||||||
|
ld a, 1 << 5 ; select direction keys
|
||||||
|
ld c, 0
|
||||||
|
|
||||||
|
ld [rJOYP], a
|
||||||
|
rept 6
|
||||||
|
ld a, [rJOYP]
|
||||||
|
endr
|
||||||
|
cpl
|
||||||
|
and %1111
|
||||||
|
swap a
|
||||||
|
ld b, a
|
||||||
|
|
||||||
|
ld a, 1 << 4 ; select button keys
|
||||||
|
ld [rJOYP], a
|
||||||
|
rept 10
|
||||||
|
ld a, [rJOYP]
|
||||||
|
endr
|
||||||
|
cpl
|
||||||
|
and %1111
|
||||||
|
or b
|
||||||
|
|
||||||
|
ld [hJoyInput], a
|
||||||
|
|
||||||
|
ld a, 1 << 4 + 1 << 5 ; deselect keys
|
||||||
|
ld [rJOYP], a
|
||||||
|
ret
|
||||||
|
|
||||||
|
Joypad::
|
||||||
|
; Update the joypad state variables:
|
||||||
|
; [hJoyReleased] keys released since last time
|
||||||
|
; [hJoyPressed] keys pressed since last time
|
||||||
|
; [hJoyHeld] currently pressed keys
|
||||||
|
homecall _Joypad
|
||||||
|
ret
|
2419
home/overworld.asm
Normal file
2419
home/overworld.asm
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue