summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-01-22 00:33:44 -0500
committeryenatch <yenatch@gmail.com>2014-01-22 00:55:41 -0500
commitfea5be469940f400e41fed59a219897a7175d10d (patch)
tree6026d4d655c7c0f55c5b5fcaeb43cf5a4e90d28e /macros.asm
parent2ac15d2475b575207caf74494dd3b6896636a3c4 (diff)
rename and add some text macros
cont replaces next, and next becomes a generic newline. para replaces page (now used for pokedex entries). dex ends a pokedex entry.
Diffstat (limited to 'macros.asm')
-rw-r--r--macros.asm8
1 files changed, 6 insertions, 2 deletions
diff --git a/macros.asm b/macros.asm
index e07e0404..90fafdbe 100644
--- a/macros.asm
+++ b/macros.asm
@@ -1,11 +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 $51," ; Start a new page.
-next EQUS "db $55," ; Scroll to the next line.
+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).
+page EQUS "db $49," ; Start a new Pokedex page.
+dex EQUS "db $5f, $50" ; End a Pokedex entry.
+
;\1 = X
;\2 = Y