diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-23 16:04:15 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-23 16:04:15 -0400 |
commit | a2b6befd7d12b2ad8bb97979a10519500dcdd870 (patch) | |
tree | 48fbfc2cec4e64748b13d56b7e3e9efe1a53a01e /wram.asm | |
parent | 7991db972b5892c36a7b004404c16f28f6b65bad (diff) |
Identify some more labels, mostly WRAM
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -774,6 +774,24 @@ wOddEggName:: ds MON_NAME_LENGTH wOddEggOTName:: ds NAME_LENGTH NEXTU +; debug mon color picker +wDebugMiddleColors:: +wDebugLightColor:: ds 2 +wDebugDarkColor:: ds 2 + ds 6 +wDebugRedChannel:: db +wDebugGreenChannel:: db +wDebugBlueChannel:: db + +NEXTU +; debug tileset color picker +wDebugPalette:: +wDebugWhiteTileColor:: ds 2 +wDebugLightTileColor:: ds 2 +wDebugDarkTileColor:: ds 2 +wDebugBlackTileColor:: ds 2 + +NEXTU wc608:: ds 16 wc618:: ds 37 wc63d:: ds 5 @@ -1016,6 +1034,10 @@ NEXTU wHallOfFamePokemonList:: hall_of_fame wHallOfFamePokemonList NEXTU +; debug color picker +wDebugOriginalColors:: ds 256 * 4 + +NEXTU ; raw link data wLinkData:: ds $514 wLinkDataEnd:: @@ -1502,6 +1524,18 @@ wUnownPuzzleCursorPosition:: db wUnownPuzzleHeldPiece:: db NEXTU +; debug mon color picker +wDebugColorRGBJumptableIndex:: db +wDebugColorCurColor:: db +wDebugColorCurMon:: db + +NEXTU +; debug tileset color picker +wDebugTilesetCurPalette:: db +wDebugTilesetRGBJumptableIndex:: db +wDebugTilesetCurColor:: db + +NEXTU ; battle tower ds $2 wBattleTowerRoomMenuJumptableIndex:: db @@ -1836,6 +1870,12 @@ wStartFlypoint:: db wEndFlypoint:: db NEXTU +; debug color picker +wDebugColorIsTrainer:: db +wDebugColorIsShiny:: db +wDebugColorCurTMHM:: db + +NEXTU ; link battle record data wLinkBattleRecordName:: ds NAME_LENGTH wLinkBattleRecordWins:: dw |