diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-03-08 13:00:09 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-03-08 13:00:09 -0700 |
commit | a6809c1cafa44a34b8fb0fe09a59c4409bf6fe9e (patch) | |
tree | 12deffbe3d51e32c611870faf97ca48a79c5e421 /wram.asm | |
parent | 730cb017d3c0f949a0db050d2437a00e5bfd51a4 (diff) |
Dump and label ball-movement-related things.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -13,7 +13,26 @@ wOAMBuffer:: ; d000 ; buffer for OAM data. Copied to OAM by DMA ds 4 * 40 - ds $4aa + ds $414 + +wBallXPos:: ; 0xd4b4 +; x coordinate of the center of the pokeball + ds 1 + ds 1 +wBallYPos:: ; 0xd4b6 +; y coordinate of the center of the pokeball + ds 1 + ds 1 + + ds $b + +wBallSpin:: ; 0xd4c3 + ds 1 +wBallRotation:: ; 0xd4c4 +; wBallSpin is added to this every frame + ds 1 + + ds $85 wCurrentMap:: ; 0xd54a ; Current map during play. See map_constants.asm |