2018-06-24 07:09:41 -07:00
|
|
|
PrinterReceive::
|
2016-05-27 07:41:59 -07:00
|
|
|
homecall _PrinterReceive
|
2015-12-15 15:59:49 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
AskSerial::
|
2013-09-08 20:53:04 -07:00
|
|
|
; send out a handshake while serial int is off
|
2016-05-11 14:16:03 -07:00
|
|
|
ld a, [wPrinterConnectionOpen]
|
2013-09-08 20:53:04 -07:00
|
|
|
bit 0, a
|
|
|
|
ret z
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2016-05-11 14:16:03 -07:00
|
|
|
; if we're still interpreting data, don't try to receive
|
|
|
|
ld a, [wPrinterOpcode]
|
2013-09-08 20:53:04 -07:00
|
|
|
and a
|
|
|
|
ret nz
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
; once every 6 frames
|
2016-05-11 14:16:03 -07:00
|
|
|
ld hl, wHandshakeFrameDelay
|
2013-09-08 20:53:04 -07:00
|
|
|
inc [hl]
|
|
|
|
ld a, [hl]
|
|
|
|
cp 6
|
|
|
|
ret c
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
xor a
|
|
|
|
ld [hl], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2020-06-16 08:28:52 -07:00
|
|
|
ld a, $0c
|
2016-05-11 14:16:03 -07:00
|
|
|
ld [wPrinterOpcode], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
; handshake
|
|
|
|
ld a, $88
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [rSB], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
; switch to internal clock
|
2019-05-05 09:14:46 -07:00
|
|
|
ld a, (0 << rSC_ON) | (1 << rSC_CLOCK)
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [rSC], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
; start transfer
|
2019-05-05 09:14:46 -07:00
|
|
|
ld a, (1 << rSC_ON) | (1 << rSC_CLOCK)
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [rSC], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-08 20:53:04 -07:00
|
|
|
ret
|