diff options
author | yenatch <yenatch@gmail.com> | 2014-02-24 21:51:20 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-24 21:52:34 -0500 |
commit | f367db0180699d63ae59ea0f55acee3db7847945 (patch) | |
tree | b0b21cfcd761c54e4d5b1a395afc13eeb3bea19f /home/text.asm | |
parent | bf5807c53cc35fe8dccab0d04e2afedc7b5989ac (diff) |
Misc bank 9 and text command $14 data.
Diffstat (limited to 'home/text.asm')
-rw-r--r-- | home/text.asm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/home/text.asm b/home/text.asm index 4284a2369..4aa3cb490 100644 --- a/home/text.asm +++ b/home/text.asm @@ -1158,17 +1158,24 @@ Text_0D:: ; 1562 ; 156a Text_14:: ; 156a -; TX_PREDEF +; Print a string from one of the following: +; 0: StringBuffer3 +; 1: StringBuffer4 +; 2: StringBuffer5 +; 3: StringBuffer2 +; 4: StringBuffer1 +; 5: EnemyMonNick +; 6: BattleMonNick ; [$14][id] ld a, [hli] push hl ld e, a ld d, 0 - ld hl, $4000 + ld hl, Unknown_24000 add hl, de add hl, de - ld a, $9 + ld a, BANK(Unknown_24000) call GetFarHalfword ld d, h ld e, l |