diff options
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 78 |
1 files changed, 71 insertions, 7 deletions
@@ -2,20 +2,84 @@ SECTION "WRAM Bank 0", WRAM0 wc000:: - ds $500 + ds $500 wcBottomMessageText:: - ds $b00 + ds $b00 SECTION "WRAM Bank 1", WRAMX, BANK[1] wOAMBuffer:: ; d000 - ; buffer for OAM data. Copied to OAM by DMA - ds 4 * 40 + ; buffer for OAM data. Copied to OAM by DMA + ds 4 * 40 - ds $87a + ds $87a wSoundTestCurrentBackgroundMusic:: ; d91a - ds 1 + ds 1 wSoundTextCurrentSoundEffect:: ; 0xd91b - ds 1 + ds 1 + + ds 225 + +wRedHighScores:: ; 0xd9fd +wRedHighScore1Points:: ; 0xd9fd + ds 6 +wRedHighScore1Name:: ; 0xda03 + ds 3 + ds 4 + +wRedHighScore2Points:: ; 0xda0a + ds 6 +wRedHighScore2Name:: ; 0xda10 + ds 3 + ds 4 + +wRedHighScore3Points:: ; 0xda17 + ds 6 +wRedHighScore3Name:: ; 0xda1d + ds 3 + ds 4 + +wRedHighScore4Points:: ; 0xda24 + ds 6 +wRedHighScore4Name:: ; 0xda2a + ds 3 + ds 4 + +wRedHighScore5Points:: ; 0xda31 + ds 6 +wRedHighScore5Name:: ; 0xda37 + ds 3 + ds 4 + +wBlueHighScores:: ; 0xda3e +wBlueHighScore1Points:: ; 0xda3e + ds 6 +wBlueHighScore1Name:: ; 0xda44 + ds 3 + ds 4 + +wBlueHighScore2Points:: ; 0xda4b + ds 6 +wBlueHighScore2Name:: ; 0xda52 + ds 3 + ds 4 + +wBlueHighScore3Points:: ; 0xda58 + ds 6 +wBlueHighScore3Name:: ; 0xda5e + ds 3 + ds 4 + +wBlueHighScore4Points:: ; 0xda65 + ds 6 +wBlueHighScore4Name:: ; 0xda6b + ds 3 + ds 4 + +wBlueHighScore5Points:: ; 0xda72 + ds 6 +wBlueHighScore5Name:: ; 0xda78 + ds 3 + ds 4 |