diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-05 11:30:12 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-05 11:30:12 -0700 |
commit | 40b4c87db7e9472d99186b67bdec3d48a2132e73 (patch) | |
tree | b0ea0d40187c103dbb9f8bd185ee5f40770b5b53 /engine/farcall.asm | |
parent | 4e36d85ee966f8f22531183679549061263b2166 (diff) | |
parent | 60dde1d03ed43de1e7ef777e4198963620c73958 (diff) |
Merge pull request #188 from yenatch/split-common
recomment and split out a ton of common asm (bank 0)
Diffstat (limited to 'engine/farcall.asm')
-rw-r--r-- | engine/farcall.asm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/engine/farcall.asm b/engine/farcall.asm new file mode 100644 index 000000000..bdee3bf38 --- /dev/null +++ b/engine/farcall.asm @@ -0,0 +1,55 @@ +FarCall_de: ; 2d54 +; Call a:de. +; Preserves other registers. + + ld [hBuffer], a + ld a, [hROMBank] + push af + ld a, [hBuffer] + rst Bankswitch + call .de + jr ReturnFarCall + +.de + push de + ret +; 2d63 + + +FarCall_hl: ; 2d63 +; Call a:hl. +; Preserves other registers. + + ld [hBuffer], a + ld a, [hROMBank] + push af + ld a, [hBuffer] + rst Bankswitch + call Function2d82 +; 2d6e + +ReturnFarCall: ; 2d6e +; We want to retain the contents of f. +; To do this, we can pop to bc instead of af. + + ld a, b + ld [$cfb9], a + ld a, c + ld [$cfba], a + +; Restore the working bank. + pop bc + ld a, b + rst Bankswitch + + ld a, [$cfb9] + ld b, a + ld a, [$cfba] + ld c, a + ret +; 2d82 + +Function2d82: ; 2d82 + jp [hl] +; 2d83 + |