diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-29 18:36:31 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-29 18:36:31 -0500 |
commit | 2bf93c5905319e9181f87b3f83cd3bce7b9feeca (patch) | |
tree | 3ebf17c8879e5d6243d81aac8f1c36eb226fac26 /home/handshake.asm | |
parent | ed3f9395f6d45f6554ed9d9c49c41ea86a8e2447 (diff) |
Import stuff from pokecrystal; diff gold and silver
Diffstat (limited to 'home/handshake.asm')
-rw-r--r-- | home/handshake.asm | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/home/handshake.asm b/home/handshake.asm new file mode 100644 index 00000000..e53e78a5 --- /dev/null +++ b/home/handshake.asm @@ -0,0 +1,50 @@ +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 + ld a, [wc2d4] + bit 0, a + ret z + + ld a, [wc2d5] + and a + ret nz + +; once every 6 frames + ld hl, wca8a + inc [hl] + ld a, [hl] + cp 6 + ret c + + xor a + ld [hl], a + + ld a, $c + ld [wc2d5], 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 |