diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2015-10-16 13:35:43 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2015-10-16 13:35:43 -0400 |
commit | 4fa6c6daa46935c7580a60a22bd9216414246dc0 (patch) | |
tree | ac6d9963a55214087d9b81b510409b6fdffcb164 /constants/misc_constants.asm | |
parent | 1e2ff967aa11ed0bcdd1dd069bde67724d3851c2 (diff) |
Split up bank 2; other relabelings
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 9678faf8a..173a9ea64 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -46,8 +46,6 @@ CHECK_FLAG EQU 2 ; joypad -BUTTONS EQU %00010000 -D_PAD EQU %00100000 NO_INPUT EQU %00000000 A_BUTTON EQU %00000001 @@ -59,6 +57,11 @@ D_LEFT EQU %00100000 D_UP EQU %01000000 D_DOWN EQU %10000000 +BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START +D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN + +R_DPAD EQU %00100000 +R_BUTTONS EQU %00010000 ; screen HP_BAR_LENGTH EQU 6 |