diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-12-17 14:54:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-17 14:54:20 -0500 |
| commit | 9352a537c39471410314be76cf866e058a9349bf (patch) | |
| tree | 328834e569db97c5263bbe128ad0b006d3bb1151 /ram | |
| parent | dd5fd058034e087165afe5e6b6ffc669781fffd6 (diff) | |
| parent | ff816609edeedd093e470ef70162d9fec1e92f3d (diff) | |
Merge pull request #85 from ZoomTen/debug-menu
Disassemble sound test portion of debug menu
Diffstat (limited to 'ram')
| -rw-r--r-- | ram/hram.asm | 16 | ||||
| -rw-r--r-- | ram/wram.asm | 6 |
2 files changed, 21 insertions, 1 deletions
diff --git a/ram/hram.asm b/ram/hram.asm index 4acfbfa..c0d49a1 100644 --- a/ram/hram.asm +++ b/ram/hram.asm @@ -57,7 +57,21 @@ hJoyDebounceSrc:: db hJoypadState2:: db - ds 6 ; TODO +UNION + +hFFA7:: db +hFFA8:: db +hFFA9:: db + +NEXTU + +hDebugMenuSoundMenuIndex:: db +hDebugMenuSoundID:: db +hDebugMenuSoundBank:: db + +ENDU + + ds 3 ; TODO hGraphicStartTile:: db hMoveMon:: db diff --git a/ram/wram.asm b/ram/wram.asm index da6d364..e0356b9 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -633,6 +633,12 @@ wTalkingTargetType:: db wcdb1:: ds 1 wcdb2:: ds 1 +ds 1 + +wcdb4:: ds 1 +wcdb5:: ds 1 +wcdb6:: ds 1 + SECTION "CDB9", WRAM0[$CDB9] wcdb9:: ds 1 |
