diff options
author | yenatch <yenatch@gmail.com> | 2017-12-12 19:13:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 19:13:53 -0500 |
commit | 6cf7c0790f3424a4cb472b274a88d04d449d5231 (patch) | |
tree | 7d3c49aaaa6d50f6ea698e95e7204e6d0b76bcca /macros/text.asm | |
parent | f6942b9a136b2ee3b25159ebc4d54509a42c5266 (diff) | |
parent | f0ab09125493f91d66af836e0abb977459a0d801 (diff) |
Merge pull request #414 from roukaour/master
Improve sprite constants and documentation
Diffstat (limited to 'macros/text.asm')
-rw-r--r-- | macros/text.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macros/text.asm b/macros/text.asm index 08004f32a..e29f8a511 100644 --- a/macros/text.asm +++ b/macros/text.asm @@ -1,15 +1,15 @@ text EQUS "db $00," ; Start writing text. next EQUS "db $4e," ; Move a line down. line EQUS "db $4f," ; Start writing at the bottom line. -page EQUS "db $50," ; Start a new Pokedex page. +page EQUS "db $50," ; Start a new Pokédex page. para EQUS "db $51," ; Start a new paragraph. cont EQUS "db $55," ; Scroll to the next line. done EQUS "db $57" ; End a text box. prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event). -; TX_RAM EQU $01 -; TX_FAR EQU $16 - enum_start 1 +; TextCommands indexes (see home/text.asm) + enum_start $01 + enum TX_RAM text_from_ram: MACRO db TX_RAM |