pokecrystal-board/home/handshake.asm

52 lines
667 B
NASM
Raw Normal View History

2015-12-15 15:59:49 -08:00
PrinterReceive:: ; 2057
ld a, [hROMBank]
push af
ld a, BANK(_PrinterReceive)
rst Bankswitch
call _PrinterReceive
pop af
rst Bankswitch
ret
; 2063
AskSerial:: ; 2063
; send out a handshake while serial int is off
2016-05-11 14:16:03 -07:00
ld a, [wPrinterConnectionOpen]
bit 0, a
ret z
2016-05-11 14:16:03 -07:00
; if we're still interpreting data, don't try to receive
ld a, [wPrinterOpcode]
and a
ret nz
; once every 6 frames
2016-05-11 14:16:03 -07:00
ld hl, wHandshakeFrameDelay
inc [hl]
ld a, [hl]
cp 6
ret c
xor a
ld [hl], a
2016-05-11 14:16:03 -07:00
ld a, 12
ld [wPrinterOpcode], a
; handshake
ld a, $88
ld [rSB], a
; switch to internal clock
ld a, %00000001
ld [rSC], a
; start transfer
ld a, %10000001
ld [rSC], a
ret
; 208a