summaryrefslogtreecommitdiff
path: root/home/serial.asm
diff options
context:
space:
mode:
authorpikalaxalt <PikalaxALT@gmail.com>2016-06-06 08:23:52 -0400
committerpikalaxalt <PikalaxALT@gmail.com>2016-06-06 08:23:52 -0400
commit0e9d0481b897c6afe7cd7c0ea5c23562379ad8ca (patch)
tree43666c9c14e9e8eddcaf9591c1bb3d61e420c59f /home/serial.asm
parent7ee526b05e7eede42729697f1641dd1fd9829bf0 (diff)
Printer-related labels
Diffstat (limited to 'home/serial.asm')
-rw-r--r--home/serial.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/home/serial.asm b/home/serial.asm
index c8e64f38..c8c7cbe9 100644
--- a/home/serial.asm
+++ b/home/serial.asm
@@ -3,9 +3,9 @@ Serial:: ; 1f78 (0:1f78)
push bc
push de
push hl
- ld a, [wUnknownSerialFlag_d49a]
- bit 0,a
- jp nz,Func_2162
+ ld a, [wPrinterConnectionOpen]
+ bit 0, a
+ jp nz, PrinterSerial__
ld a, [hSerialConnectionStatus]
inc a
jr z, .connectionNotYetEstablished
@@ -314,8 +314,8 @@ Serial_TryEstablishingExternallyClockedConnection:: ; 22fa (0:22fa)
ld [rSC], a
ret
-Func_2162:: ; 2162 (0:2162)
- call Func_2fa7
+PrinterSerial__:: ; 2162 (0:2162)
+ call PrinterSerial
pop hl
pop de
pop bc