diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-12-18 09:09:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-18 09:09:51 -0500 |
| commit | 0e25150cab59a8f5822ad7cfad176e3a35b4dc71 (patch) | |
| tree | bfdfeca0aaa7b708a4a971dc42a2a19a33c4a0cc /ram | |
| parent | b1ae1098d06d9865c767471e539fa65f77101aaa (diff) | |
| parent | 89f8e366d65c15b8645564b3e2409070ac9717a4 (diff) | |
Merge pull request #86 from ZoomTen/audio-engine
Disassemble the rest of the audio engine
Diffstat (limited to 'ram')
| -rw-r--r-- | ram/wram.asm | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/ram/wram.asm b/ram/wram.asm index 56e87b8..6b7fa0f 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -22,9 +22,9 @@ wChannel8:: channel_struct wChannel8 wCurTrackDuty:: db wCurTrackIntensity:: db wCurTrackFrequency:: dw -wc195:: db - - ds 2 ; TODO +wSoundLength:: db +wCurNoteDuration:: db +wCurMusicByte:: db wCurChannel:: db wVolume:: db @@ -34,12 +34,15 @@ wSoundOutput:: ; bit 0-3: ch1-4 so1 on/off db - ds 1 ; TODO +wPitchSweep:: db wMusicID:: dw wMusicBank:: db - ds 5 ; TODO +wNoiseSampleAddress:: dw +wNoiseSampleDelay:: db +wc1a2:: db +wNoiseSampleSet:: db wLowHealthAlarm:: ; bit 7: on/off @@ -58,19 +61,27 @@ wMusicFadeID:: wMusicFadeIDLow:: db wMusicFadeIDHigh:: db - ds 2 ; TODO +wSweepingFadeIndex:: db +wSweepingFadeCounter:: db wIncrementTempo: dw wMapMusic:: db wCryPitch:: dw wCryLength:: dw - ds 7 ; TODO +wLastVolume:: db +wc1b3:: db +wSFXPriority:: db +wChannel1JumpCondition:: db +wChannel2JumpCondition:: db +wChannel3JumpCondition:: db +wChannel4JumpCondition:: db + +wStereoPanningMask:: db -wc1b9:: db -wc1ba:: db +wCryTracks:: db ; either wChannelsEnd or wMusicEnd, unsure - ds 1 ; TODO +wSFXDuration:: db wMusicInitEnd:: |
