diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 12:42:16 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 12:42:33 -0400 |
commit | e0df1a6041b73e8304e8c5a691b454652f5a667d (patch) | |
tree | 20e4916a0072fb0452881c5febf25a063f4af314 /engine/printer | |
parent | 3975a85344da48af7525aa8b08de8be98749b823 (diff) |
Remove RAM address comments
Diffstat (limited to 'engine/printer')
-rw-r--r-- | engine/printer/printer.asm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/printer/printer.asm b/engine/printer/printer.asm index 18e71c3d..47da5285 100644 --- a/engine/printer/printer.asm +++ b/engine/printer/printer.asm @@ -502,7 +502,7 @@ Printer_RestartMapMusic: CheckPrinterStatus: ; Check for printer errors -; If [ca88] == -1, we're disconnected +; If [wPrinterHandshake] == -1, we're disconnected ld a, [wPrinterHandshake] cp -1 jr nz, .printer_connected @@ -510,7 +510,6 @@ CheckPrinterStatus: cp -1 jr z, .error_2 .printer_connected -; ca89 contains printer status flags ld a, [wPrinterStatusFlags] and %11100000 ret z ; no error |