blob: 9bc8663e57760e6ccd7f6d5e799ede4fe739b5c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
ldh [rJOYP], a
REPT 6
ldh a, [rJOYP]
ENDR
cpl
and %1111
swap a
ld b, a
ld a, 1 << 4 ; select button keys
ldh [rJOYP], a
REPT 10
ldh a, [rJOYP]
ENDR
cpl
and %1111
or b
ldh [hJoyInput], a
ld a, 1 << 4 + 1 << 5 ; deselect keys
ldh [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
|