2017-12-11 17:20:01 +00:00
|
|
|
; joypad buttons
|
|
|
|
const_def
|
2024-11-30 00:29:30 +00:00
|
|
|
shift_const A_BUTTON ; 0
|
|
|
|
shift_const B_BUTTON ; 1
|
|
|
|
shift_const SELECT ; 2
|
|
|
|
shift_const START ; 3
|
|
|
|
shift_const D_RIGHT ; 4
|
|
|
|
shift_const D_LEFT ; 5
|
|
|
|
shift_const D_UP ; 6
|
|
|
|
shift_const D_DOWN ; 7
|
2017-12-11 17:20:01 +00:00
|
|
|
|
2024-11-30 00:29:30 +00:00
|
|
|
DEF NO_INPUT EQU %00000000
|
2017-12-11 17:20:01 +00:00
|
|
|
|
2024-11-30 00:29:30 +00:00
|
|
|
DEF BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START
|
|
|
|
DEF D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN
|