diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-18 00:39:01 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-18 00:39:01 -0500 |
commit | 8bf255b9f84f7e4f93e85a75512a002ef240a10f (patch) | |
tree | 786ae5588f8bfe4b067cb3e91fd66cc4d95bd2da /home/audio.asm | |
parent | 7cc2571529d6b3f5ffcbb71c62fab31b27ba224a (diff) |
Prepare to merge
Diffstat (limited to 'home/audio.asm')
-rw-r--r-- | home/audio.asm | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/home/audio.asm b/home/audio.asm index 1e02f91eb..c7bb7fed3 100644 --- a/home/audio.asm +++ b/home/audio.asm @@ -506,18 +506,18 @@ Function3d9f:: ; 3d9f ; Places a BCD number at the ; upper center of the screen. ; Unreferenced. - ld a, $20 - ld [Sprites + $98], a - ld [Sprites + $9c], a - ld a, $50 - ld [Sprites + $99], a - ld a, $58 - ld [Sprites + $9d], a + ld a, 4 * 8 + ld [Sprites + 38 * 4], a + ld [Sprites + 39 * 4], a + ld a, 10 * 8 + ld [Sprites + 38 * 4 + 1], a + ld a, 11 * 8 + ld [Sprites + 39 * 4 + 1], a xor a - ld [Sprites + $9b], a - ld [Sprites + $9f], a + ld [Sprites + 38 * 4 + 3], a + ld [Sprites + 39 * 4 + 3], a ld a, [wc296] - cp $64 + cp 100 jr nc, .max add 1 daa @@ -525,17 +525,17 @@ Function3d9f:: ; 3d9f swap a and $f add "0" - ld [Sprites + $9a], a + ld [Sprites + 38 * 4 + 2], a ld a, b and $f add "0" - ld [Sprites + $9e], a + ld [Sprites + 39 * 4 + 2], a ret .max ld a, "9" - ld [Sprites + $9a], a - ld [Sprites + $9e], a + ld [Sprites + 38 * 4 + 2], a + ld [Sprites + 39 * 4 + 2], a ret ; 3dde |