summaryrefslogtreecommitdiff
path: root/constants/input_constants.asm
blob: 7984d5a90c6df7b641f9672ada8777de01dbf085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; joypad buttons
	const_def
	const BIT_A_BUTTON
	const BIT_B_BUTTON
	const BIT_SELECT
	const BIT_START
	const BIT_D_RIGHT
	const BIT_D_LEFT
	const BIT_D_UP
	const BIT_D_DOWN

NO_INPUT EQU 0
A_BUTTON EQU 1 << BIT_A_BUTTON
B_BUTTON EQU 1 << BIT_B_BUTTON
SELECT   EQU 1 << BIT_SELECT
START    EQU 1 << BIT_START
D_RIGHT  EQU 1 << BIT_D_RIGHT
D_LEFT   EQU 1 << BIT_D_LEFT
D_UP     EQU 1 << BIT_D_UP
D_DOWN   EQU 1 << BIT_D_DOWN