From 5b13a7a13b9ebbb26a75b9ef19221e8e140c221b Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 12 Dec 2017 13:22:19 -0500 Subject: Identify more sprite-related constants Start more documentation --- macros/text.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'macros/text.asm') diff --git a/macros/text.asm b/macros/text.asm index 08004f32a..5f4701b8c 100644 --- a/macros/text.asm +++ b/macros/text.asm @@ -7,9 +7,9 @@ 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 -- cgit v1.2.3 From 0b34c997d6b24ff3b229396c2b8351f08a132410 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 12 Dec 2017 13:51:07 -0500 Subject: Add basic documentation for text commands. --- macros/text.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macros/text.asm') diff --git a/macros/text.asm b/macros/text.asm index 5f4701b8c..e29f8a511 100644 --- a/macros/text.asm +++ b/macros/text.asm @@ -1,7 +1,7 @@ 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. -- cgit v1.2.3