diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-18 18:34:20 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-18 18:34:20 -0500 |
commit | 2acaa96cf16ce953a7149f300d54e5440abc27d8 (patch) | |
tree | 8068d4e5daec008ecc41ca35208a3e8fa970a02c /macros/scripts | |
parent | 676b585375522127d3d1e134c8761d55ede32739 (diff) |
More charmap and home/text.asm documentation for JP chars
Diffstat (limited to 'macros/scripts')
-rw-r--r-- | macros/scripts/text.asm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/macros/scripts/text.asm b/macros/scripts/text.asm index f22f83551..bc5fff958 100644 --- a/macros/scripts/text.asm +++ b/macros/scripts/text.asm @@ -1,4 +1,4 @@ -text EQUS "db \"<START>\"," ; Start writing text. +text EQUS "db TX_START," ; Start writing text. next EQUS "db \"<NEXT>\"," ; Move a line down. line EQUS "db \"<LINE>\"," ; Start writing at the bottom line. page EQUS "db \"@\"," ; Start a new Pokédex page. @@ -8,7 +8,12 @@ done EQUS "db \"<DONE>\"" ; End a text box. prompt EQUS "db \"<PROMPT>\"" ; Prompt the player to end a text box (initiating some other event). ; TextCommands indexes (see home/text.asm) - enum_start $01 + enum_start + + enum TX_START ; $00 +text_start: MACRO + db TX_START +ENDM enum TX_RAM ; $01 text_from_ram: MACRO |