summaryrefslogtreecommitdiff
path: root/engine/printer
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2017-09-25 19:18:33 -0700
committerPokechu22 <Pokechu022@gmail.com>2017-09-25 19:18:33 -0700
commit78b6f1a613913536789fe1bcc91b95d6cca54ae9 (patch)
tree9ade0c53b1a5e11e059e7be6d44e35eb13e6c4f5 /engine/printer
parent1ce6731d98388ecacf94036cd26d0125eebbb943 (diff)
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'engine/printer')
-rwxr-xr-xengine/printer/serial.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/printer/serial.asm b/engine/printer/serial.asm
index b424876e..fa83eb9d 100755
--- a/engine/printer/serial.asm
+++ b/engine/printer/serial.asm
@@ -28,7 +28,7 @@ PrinterTransmissionJumptable:
ld a, [hli]
ld h, [hl]
ld l, a
- jp [hl]
+ jp hl
.Jumptable:
dw Printer_InitSerial ; 00
@@ -448,7 +448,7 @@ PrinterSerial_:
ld a, [hli]
ld h, [hl]
ld l, a
- jp [hl]
+ jp hl
.Jumptable:
dw .Nop