You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
split serial handshake into common/handshake.asm
This commit is contained in:
38
common/handshake.asm
Normal file
38
common/handshake.asm
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
AskSerial: ; 2063
|
||||||
|
; send out a handshake while serial int is off
|
||||||
|
ld a, [$c2d4]
|
||||||
|
bit 0, a
|
||||||
|
ret z
|
||||||
|
|
||||||
|
ld a, [$c2d5]
|
||||||
|
and a
|
||||||
|
ret nz
|
||||||
|
|
||||||
|
; once every 6 frames
|
||||||
|
ld hl, $ca8a
|
||||||
|
inc [hl]
|
||||||
|
ld a, [hl]
|
||||||
|
cp 6
|
||||||
|
ret c
|
||||||
|
|
||||||
|
xor a
|
||||||
|
ld [hl], a
|
||||||
|
|
||||||
|
ld a, $c
|
||||||
|
ld [$c2d5], 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
|
||||||
|
|
40
main.asm
40
main.asm
@ -475,45 +475,7 @@ Function1d19: ; 1d19
|
|||||||
|
|
||||||
INCLUDE "common/menu.asm"
|
INCLUDE "common/menu.asm"
|
||||||
|
|
||||||
|
INCLUDE "common/handshake.asm"
|
||||||
AskSerial: ; 2063
|
|
||||||
; send out a handshake while serial int is off
|
|
||||||
ld a, [$c2d4]
|
|
||||||
bit 0, a
|
|
||||||
ret z
|
|
||||||
|
|
||||||
ld a, [$c2d5]
|
|
||||||
and a
|
|
||||||
ret nz
|
|
||||||
|
|
||||||
; once every 6 frames
|
|
||||||
ld hl, $ca8a
|
|
||||||
inc [hl]
|
|
||||||
ld a, [hl]
|
|
||||||
cp 6
|
|
||||||
ret c
|
|
||||||
|
|
||||||
xor a
|
|
||||||
ld [hl], a
|
|
||||||
|
|
||||||
ld a, $c
|
|
||||||
ld [$c2d5], 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
|
|
||||||
|
|
||||||
|
|
||||||
INCLUDE "common/game_time.asm"
|
INCLUDE "common/game_time.asm"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user