diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-03 22:57:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-03 22:57:43 -0400 |
commit | 053afc46349952688c0ce2116cc76f8d4733895e (patch) | |
tree | ccbb87aa466a88496ad80062d705efe8b62be026 /home/overworld_text.asm | |
parent | 6ef36800b0dcb86100a7c716172015667e60dc99 (diff) |
Move more code from home.asm to home/
Diffstat (limited to 'home/overworld_text.asm')
-rw-r--r-- | home/overworld_text.asm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/home/overworld_text.asm b/home/overworld_text.asm new file mode 100644 index 00000000..b32335f7 --- /dev/null +++ b/home/overworld_text.asm @@ -0,0 +1,31 @@ +TextScriptEndingChar:: + db "@" + +TextScriptEnd:: + ld hl, TextScriptEndingChar + ret + +ExclamationText:: + TX_FAR _ExclamationText + db "@" + +GroundRoseText:: + TX_FAR _GroundRoseText + db "@" + +BoulderText:: + TX_FAR _BoulderText + db "@" + +MartSignText:: + TX_FAR _MartSignText + db "@" + +PokeCenterSignText:: + TX_FAR _PokeCenterSignText + db "@" + +PickUpItemText:: + TX_ASM + predef PickUpItem + jp TextScriptEnd |