diff options
Diffstat (limited to 'hram.asm')
-rwxr-xr-x | hram.asm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ hJoypadState EQU $FF98 ; current state of buttons. See joy_constants.asm for which bits ; correspond to which buttons. -hNewlyPressedButtons EQU $FF99 ; mask for buttons that were pressed in the current frame. +hNewlyPressedButtons EQU $FF99 ; buttons that were pressed in the current frame. +hPressedButtons EQU $FF9A ; buttons that were pressed last frame and current frame(?) hPrevPreviousJoypadState EQU $FF9B ; joypad state from two frames ago. See joy_constants.asm for ; which bits correspond to which buttons. (need a better name for this...) hPreviousJoypadState EQU $FF9C ; prevoius frame's joypad state. See joy_constants.asm for |