diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-03-16 21:55:20 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-03-16 21:55:20 -0700 |
commit | 42f15647de10fa359c829653ee412dabcd09b620 (patch) | |
tree | 3846c6be55bb405d8f0e5350c8eccb9534a0634d /wram.asm | |
parent | 8d9f84c0fe65b12f967f2b466c979d8d2f3947cf (diff) |
Label and document Field Select screen functions. Add some wram labels.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 24 |
1 files changed, 22 insertions, 2 deletions
@@ -13,7 +13,12 @@ wOAMBuffer:: ; d000 ; buffer for OAM data. Copied to OAM by DMA ds 4 * 40 - ds $413 + ds $40c + +wCurrentStage:: ; 0xd4ac + ds 1 + + ds 6 wBallXPos:: ; 0xd4b3 ; x coordinate of the center of the pokeball @@ -117,7 +122,22 @@ wTitleScreenBouncingBallAnimationFrame:: ; 0xd90e wTitleScreenPokeballAnimationCounter:: ; 0xd90f ds 1 - ds 10 + ds 2 + +wFieldSelectBlinkingBorderTimer:: ; 0xd912 +; Number of frames to blink the field select screen border after the player chooses a field. + ds 1 + +wSelectedFieldIndex:: ; d913 +; $0 if player is hovering cursor over Red Stage +; $1 if player is hovering cursor over Blue Stage + ds 1 + +wFieldSelectBlinkingBorderFrame:: ; 0xd914 +; The blinking border's current animation frame. + ds 1 + + ds 5 wSoundTestCurrentBackgroundMusic:: ; d91a ds 1 |