diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-03-05 21:01:44 -0800 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-03-05 21:01:44 -0800 |
commit | 2f503c0af4ab4229e1549fcce683132d0bdd3c25 (patch) | |
tree | f953d1379d877bc5e81f2ba8029b16a1b25708e3 /wram.asm | |
parent | 581e85d2753083608b6b296801dbedd88f1b8db8 (diff) |
Routine that draws the timer in the top-right corner of the screen during various events.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -13,7 +13,16 @@ wOAMBuffer:: ; d000 ; buffer for OAM data. Copied to OAM by DMA ds 4 * 40 - ds $869 + ds $4da + +wTimerSeconds:: ; 0xd57a + ds 1 +wTimerMinutes:: ; 0xd57b + ds 1 +wTimerFrames:: ; 0xd57c + ds 1 + + ds $38c wTitleScreenCursorSelection:: ; 0xd909 ; 0 = Game Start |