diff options
author | xCrystal <rgr.crystal@gmail.com> | 2016-01-16 21:28:17 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2016-01-16 21:28:17 +0100 |
commit | f75d9155202051092a6f1de46cc84260db5f03cf (patch) | |
tree | 8cc7b2c58d77ac1ae43e070349be1b17c263bbae /src | |
parent | 3919f2f61630e01030f68d31352c57c1581c4d19 (diff) |
clean up wram.asm
Diffstat (limited to 'src')
-rwxr-xr-x | src/wram.asm | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/wram.asm b/src/wram.asm index 46f44b6..ff854c4 100755 --- a/src/wram.asm +++ b/src/wram.asm @@ -126,19 +126,23 @@ wSerialRecvBuf:: ; $cba5 - $cbc4 ; perhaps to account for the two unused pointers at the ; beginning of DeckPointers wOpponentDeck:: ; cc0e - ds $5 + ds $1 + ds $4 wIsPracticeDuel:: ; cc13 - ds $7 + ds $1 + ds $6 wDuelTheme:: ; cc1a ds $1 ds $9 -wPlayerCard:: +; data of the player's card currently in play +wPlayerCard:: ; c224 ds CARD_DATA_LENGTH - -wOpponentCard:: + +; data of the opponent's card currently in play +wOpponentCard:: ; cc65 ds CARD_DATA_LENGTH ds $67 @@ -153,7 +157,8 @@ SECTION "WRAM1", WRAMX, BANK[1] ds $113 wMatchStartTheme:: ; d113 - ds $21c + ds $1 + ds $21b wCurMap:: ; d32f ds $1 @@ -162,7 +167,8 @@ wPlayerXCoord:: ; d330 ds $1 wPlayerYCoord:: ; d331 - ds $a53 + ds $1 + ds $a52 wMusicDC:: ; dd84 ds $2 |