diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-07-01 10:54:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-01 10:54:43 -0500 |
commit | e42ec2368b3f61715f1e86d26bd8706684336c62 (patch) | |
tree | 7e290929824d0857be5846364da0007da0c749a5 /src/wram.asm | |
parent | 30aa1150f1c42a42aebb4dd1cd9f919b62cbff09 (diff) | |
parent | e9d1642fbbe19df0dac0c2dca16ac22aed760b84 (diff) |
Merge pull request #42 from xCrystal/master
More home disassembly ; Redesign TX_SYMBOL constants ; rename 'Kind' labels ; more wram addresses and text symbols ; Don't use the extras submodule ; Add support for disassembling poketcg-specific macros
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/wram.asm b/src/wram.asm index 84cd374..835c29a 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -512,7 +512,12 @@ wBackgroundPalettesCGB:: ; caf0 wObjectPalettesCGB:: ; cb30 ds 8 palettes - ds $4 + ds $2 + +; stores a pointer to a temporary list of elements (e.g. pointer to wDuelTempList) +; to be read or written sequentially +wListPointer:: ; cb72 + ds $2 SECTION "WRAM Serial Transfer", WRAM0 @@ -642,7 +647,8 @@ wCardListHeaderText:: ; cbdc wcbde:: ; cbde ds $1 -wcbdf:: ; cbdf +; flag indicating whether a list of cards should be sorted by ID +wSortCardListByID:: ; cbdf ds $1 wcbe0:: ; cbe0 @@ -958,7 +964,7 @@ wListItemXPosition:: ; cd1a wNumListItems:: ; cd1b ds $1 -wcd1c:: ; cd1c +wListItemNameMaxLength:: ; cd1c ds $1 wListFunctionPointer:: ; cd1d @@ -1063,7 +1069,7 @@ wce2b:: ; ce2b wTxRam2:: ; cd3f ds $2 -; text pointer for the second TX_RAM2 on a text +; text pointer for the second TX_RAM2 of a text wTxRam2_b:: ; ce41 ds $2 @@ -1298,6 +1304,8 @@ wd0aa:: ; d0aa wd0b4:: ; d0b4 ds $1 +; a GAME_EVENT_* constant corresponding to an entry in GameEventPointerTable +; overworld, duel, credits... wGameEvent:: ; d0b5 ds $1 |