summaryrefslogtreecommitdiff
path: root/home/copy.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2018-06-30 17:50:33 -0400
committerGitHub <noreply@github.com>2018-06-30 17:50:33 -0400
commit2641f93ad084b1329b3f3b9f7c8c222445fc4832 (patch)
treefb048bbc8bb7257dbd8169e2442117da5d2b30d2 /home/copy.asm
parent91f914718a263839daef24d44eda857bfc7cca95 (diff)
parentda5125e1411f9599b883181c5ee6e31252d37ac8 (diff)
Merge pull request #534 from Rangi42/master
[RTM] Fix triple newlines left over from removing address comments, and other improvements
Diffstat (limited to 'home/copy.asm')
-rw-r--r--home/copy.asm14
1 files changed, 0 insertions, 14 deletions
diff --git a/home/copy.asm b/home/copy.asm
index 65be3895a..68ed240e3 100644
--- a/home/copy.asm
+++ b/home/copy.asm
@@ -1,6 +1,5 @@
; Functions to copy data from ROM.
-
Get2bpp_2::
ld a, [rLCDC]
bit rLCDC_ENABLE, a
@@ -94,14 +93,10 @@ OldDMATransfer::
ld [hBGMapMode], a
ret
-
-
ReplaceKrisSprite::
farcall _ReplaceKrisSprite
ret
-
-
LoadStandardFont::
farcall _LoadStandardFont
ret
@@ -110,8 +105,6 @@ LoadFontsBattleExtra::
farcall _LoadFontsBattleExtra
ret
-
-
LoadFontsExtra::
farcall _LoadFontsExtra1
farcall _LoadFontsExtra2
@@ -139,8 +132,6 @@ DecompressRequest2bpp::
call CloseSRAM
ret
-
-
FarCopyBytes::
; copy bc bytes from a:hl to de
@@ -156,7 +147,6 @@ FarCopyBytes::
rst Bankswitch
ret
-
FarCopyBytesDouble::
; Copy bc bytes from a:hl to bc*2 bytes at de,
; doubling each byte in the process.
@@ -194,7 +184,6 @@ FarCopyBytesDouble::
rst Bankswitch
ret
-
Request2bpp::
; Load 2bpp at b:de to occupy c tiles of hl.
ld a, [hBGMapMode]
@@ -269,7 +258,6 @@ Request2bpp::
ld c, a
jr .loop
-
Request1bpp::
; Load 1bpp at b:de to occupy c tiles of hl.
ld a, [hBGMapMode]
@@ -344,7 +332,6 @@ Request1bpp::
ld c, a
jr .loop
-
Get2bpp::
ld a, [rLCDC]
bit rLCDC_ENABLE, a
@@ -374,7 +361,6 @@ Copy2bpp::
jp FarCopyBytes
-
Get1bpp::
ld a, [rLCDC]
bit rLCDC_ENABLE, a