diff options
| author | ISSOtm <eldredhabert0@gmail.com> | 2018-05-28 14:02:22 +0200 |
|---|---|---|
| committer | ISSOtm <eldredhabert0@gmail.com> | 2018-05-28 14:02:22 +0200 |
| commit | 39a6615bcbdcaf21190e2836f21755db1b394951 (patch) | |
| tree | 83aa5759d94b70bf54953303e546c716ac0a570c /engine/link | |
| parent | f62a9355cdfc394dfcf5e322708e245a994f1895 (diff) | |
Disassemble a lil' bit
Diffstat (limited to 'engine/link')
| -rw-r--r-- | engine/link/place_waiting_text.asm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/engine/link/place_waiting_text.asm b/engine/link/place_waiting_text.asm new file mode 100644 index 0000000..19d4a6a --- /dev/null +++ b/engine/link/place_waiting_text.asm @@ -0,0 +1,23 @@ +SECTION "PlaceWaitingText", ROMX[$4000],BANK[1] + +PlaceWaitingText:: ; 1:4000 + hlcoord 3, 10 + ld b, 1 + ld c, 11 + ld a, [wBattleMode] + and a + jr z, .link_textbox + call Textbox + jr .textbox_done + +.link_textbox + predef Predef_LinkTextbox +.textbox_done + hlcoord 4, 11 + ld de, .Waiting + call PlaceString + ld c, 50 + jp DelayFrames + +.Waiting: + db "Waiting...!@"
\ No newline at end of file |
