diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-20 13:58:03 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-20 13:58:03 -0400 |
commit | fac958b280056922a1828b71a04d84a36e1e807a (patch) | |
tree | c094adc59182b253a61defb5fb85de7a9d77b7cc /macros/text.asm | |
parent | bfb981f1885d21cc59d2656e84c87bb8d64a089c (diff) |
- Remove trailing whitespace
- Indent with single tabs, not spaces
- Colons after labels
- Capitalize BANK, HIGH, and LOW
- dbw BANK(X), X -> dba X
Diffstat (limited to 'macros/text.asm')
-rw-r--r-- | macros/text.asm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/macros/text.asm b/macros/text.asm index 4c88458..4ce8d43 100644 --- a/macros/text.asm +++ b/macros/text.asm @@ -5,8 +5,7 @@ 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 @ +text_end EQUS "db $50" ; End control code for text processor (different from "@") ; TODO: determine if these are in ; Pokedex text commands are only used with pokered. @@ -123,12 +122,12 @@ sound_slot_machine_start: macro cry_nidorina: macro db TX_CRY_14 endm - + enum TX_CRY_15 ; $15 cry_pigeot: macro db TX_CRY_15 endm - + enum TX_CRY_16 ; $16 cry_jugon: macro db TX_CRY_16 |