aboutsummaryrefslogtreecommitdiffstats
path: root/data/yes_no_menu_strings.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2020-07-20 13:22:32 -0400
committerGitHub <noreply@github.com>2020-07-20 13:22:32 -0400
commit3e554e1d5206f0ede60f7e99e68637b7f13bc683 (patch)
treec5a21b6e4d24ad3e98c3c98982afc65a866e650d /data/yes_no_menu_strings.asm
parentMerge pull request #279 from Rangi42/master (diff)
parentAdd comments associating constants with data, and identify some more data (diff)
downloadpokeyellow-3e554e1d5206f0ede60f7e99e68637b7f13bc683.tar.gz
pokeyellow-3e554e1d5206f0ede60f7e99e68637b7f13bc683.tar.xz
pokeyellow-3e554e1d5206f0ede60f7e99e68637b7f13bc683.zip
Merge pull request #281 from Rangi42/master
Add comments associating constants with data, and identify some more data
Diffstat (limited to 'data/yes_no_menu_strings.asm')
-rw-r--r--data/yes_no_menu_strings.asm44
1 files changed, 44 insertions, 0 deletions
diff --git a/data/yes_no_menu_strings.asm b/data/yes_no_menu_strings.asm
new file mode 100644
index 00000000..db2eeb4c
--- /dev/null
+++ b/data/yes_no_menu_strings.asm
@@ -0,0 +1,44 @@
+two_option_menu: MACRO
+ db \1, \2, \3
+ dw \4
+ENDM
+
+TwoOptionMenuStrings:
+; entries correspond to *_MENU constants
+ ; width, height, blank line before first menu item?, text pointer
+ two_option_menu 4, 3, FALSE, .YesNoMenu
+ two_option_menu 6, 3, FALSE, .NorthWestMenu
+ two_option_menu 6, 3, FALSE, .SouthEastMenu
+ two_option_menu 6, 3, FALSE, .YesNoMenu
+ two_option_menu 6, 3, FALSE, .NorthEastMenu
+ two_option_menu 7, 3, FALSE, .TradeCancelMenu
+ two_option_menu 7, 4, TRUE, .HealCancelMenu
+ two_option_menu 4, 3, FALSE, .NoYesMenu
+
+.NoYesMenu:
+ db "NO"
+ next "YES@"
+
+.YesNoMenu:
+ db "YES"
+ next "NO@"
+
+.NorthWestMenu:
+ db "NORTH"
+ next "WEST@"
+
+.SouthEastMenu:
+ db "SOUTH"
+ next "EAST@"
+
+.NorthEastMenu:
+ db "NORTH"
+ next "EAST@"
+
+.TradeCancelMenu:
+ db "TRADE"
+ next "CANCEL@"
+
+.HealCancelMenu:
+ db "HEAL"
+ next "CANCEL@"