aboutsummaryrefslogtreecommitdiffstats
path: root/constants/input_constants.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2025-06-30 12:47:22 -0400
committerGitHub <noreply@github.com>2025-06-30 12:47:22 -0400
commit56c405de09ce267c4cfbc68a15c37b2ff51c635a (patch)
tree47d25c237e9af824f7a57295a2d2e298b194a8e6 /constants/input_constants.asm
parentDistinguish single trainer pics section from Pokemon pics (diff)
downloadpokeyellow-56c405de09ce267c4cfbc68a15c37b2ff51c635a.tar.gz
pokeyellow-56c405de09ce267c4cfbc68a15c37b2ff51c635a.tar.xz
pokeyellow-56c405de09ce267c4cfbc68a15c37b2ff51c635a.zip
Replace hardware_constants.asm with hardware.inc (#511)
Diffstat (limited to 'constants/input_constants.asm')
-rw-r--r--constants/input_constants.asm20
1 files changed, 0 insertions, 20 deletions
diff --git a/constants/input_constants.asm b/constants/input_constants.asm
deleted file mode 100644
index 68233dea..00000000
--- a/constants/input_constants.asm
+++ /dev/null
@@ -1,20 +0,0 @@
-; joypad buttons
- const_def
- const BIT_A_BUTTON ; 0
- const BIT_B_BUTTON ; 1
- const BIT_SELECT ; 2
- const BIT_START ; 3
- const BIT_D_RIGHT ; 4
- const BIT_D_LEFT ; 5
- const BIT_D_UP ; 6
- const BIT_D_DOWN ; 7
-
-DEF NO_INPUT EQU 0
-DEF A_BUTTON EQU 1 << BIT_A_BUTTON
-DEF B_BUTTON EQU 1 << BIT_B_BUTTON
-DEF SELECT EQU 1 << BIT_SELECT
-DEF START EQU 1 << BIT_START
-DEF D_RIGHT EQU 1 << BIT_D_RIGHT
-DEF D_LEFT EQU 1 << BIT_D_LEFT
-DEF D_UP EQU 1 << BIT_D_UP
-DEF D_DOWN EQU 1 << BIT_D_DOWN