diff options
author | Pokeglitch <39797359+Pokeglitch@users.noreply.github.com> | 2018-06-18 21:32:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-18 21:32:52 -0400 |
commit | 61f84aa25409bbdfa7a7c95cc831977cd8462ae4 (patch) | |
tree | 0382b21830580d39759cba42a7073dee9c734fec /macros/text.asm | |
parent | f25d7c2299513b7ec77738a4625d4e70dcfbbb1c (diff) | |
parent | a6c1d2d45853214119b90b9918636508451a269f (diff) |
Merge pull request #22 from Pokeglitch/master
More Bank 03 Routines
Diffstat (limited to 'macros/text.asm')
-rw-r--r-- | macros/text.asm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/macros/text.asm b/macros/text.asm index fd88918..f95c300 100644 --- a/macros/text.asm +++ b/macros/text.asm @@ -1,21 +1,13 @@ text EQUS "db $00," ; Start writing text. next EQUS "db \"<NEXT>\"," ; Move a line down. line EQUS "db \"<LINE>\"," ; Start writing at the bottom line. +para EQUS "db \"<PARA>\"," ; Start a new paragraph. cont EQUS "db \"<CONT>\"," ; Scroll to the next line. done EQUS "db \"<DONE>\"" ; End a text box. prompt EQUS "db \"<PROMPT>\"" ; Prompt the player to end a text box (initiating some other event). text_end EQUS "db $50" ; End control code for text processor ; different from @ -; Start a new paragraph -para: MACRO - if _NARG == 0 - db "<PARA>" - else - db "<PARA>", \1 ; Rest of text - endc -ENDM - ; TODO: determine if these are in ; Pokedex text commands are only used with pokered. ; They are included for compatibility. |