summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2015-07-12 23:00:48 -0700
committerYamaArashi <shadow962@live.com>2015-07-12 23:00:48 -0700
commit4a8c9993ad182296131ef87111e1b6d6e2af4201 (patch)
treecd8044bd5b8e4b88501c2ccf7b006ef296a735ca /constants
parent99df5f0fd79f063ee4c7ec364eadd175a3d83c42 (diff)
named wram variables
Diffstat (limited to 'constants')
-rwxr-xr-xconstants/list_constants.asm6
-rw-r--r--constants/misc_constants.asm8
2 files changed, 14 insertions, 0 deletions
diff --git a/constants/list_constants.asm b/constants/list_constants.asm
index aab542ec..8027731d 100755
--- a/constants/list_constants.asm
+++ b/constants/list_constants.asm
@@ -12,3 +12,9 @@ ITEM_NAME EQU 4
PLAYEROT_NAME EQU 5
ENEMYOT_NAME EQU 6
TRAINER_NAME EQU 7
+
+INIT_ENEMYOT_LIST EQU 1
+INIT_BAG_ITEM_LIST EQU 2
+INIT_OTHER_ITEM_LIST EQU 3
+INIT_PLAYEROT_LIST EQU 4
+INIT_MON_LIST EQU 5 \ No newline at end of file
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm
index 3452a393..a96fc59f 100644
--- a/constants/misc_constants.asm
+++ b/constants/misc_constants.asm
@@ -58,6 +58,14 @@ TRADE_CANCEL_MENU EQU 5
HEAL_CANCEL_MENU EQU 6
NO_YES_MENU EQU 7
+; menu exit method constants for list menus and the buy/sell/quit menu
+CHOSE_MENU_ITEM EQU 1 ; pressed A
+CANCELLED_MENU EQU 2 ; pressed B
+
+; menu exit method constants for two-option menus
+CHOSE_FIRST_ITEM EQU 1
+CHOSE_SECOND_ITEM EQU 2
+
; serial
ESTABLISH_CONNECTION_WITH_INTERNAL_CLOCK EQU $01