diff options
| author | Daniel Harding <33dannye@gmail.com> | 2020-02-05 17:59:01 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-05 17:59:01 -0600 |
| commit | 5048f24816e95fc38a708b967648deb86c62a689 (patch) | |
| tree | c6b15116aefe09c91c3047d506fc7bbf677f8001 /audio/sfx/cry01_2.asm | |
| parent | New Discord invite link (diff) | |
| parent | Rename dnote to drum_note and dspeed to drum_speed (diff) | |
| download | pokeyellow-5048f24816e95fc38a708b967648deb86c62a689.tar.gz pokeyellow-5048f24816e95fc38a708b967648deb86c62a689.tar.xz pokeyellow-5048f24816e95fc38a708b967648deb86c62a689.zip | |
Merge pull request #223 from pret/audio-macros
Audio macros
Diffstat (limited to 'audio/sfx/cry01_2.asm')
| -rw-r--r-- | audio/sfx/cry01_2.asm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/audio/sfx/cry01_2.asm b/audio/sfx/cry01_2.asm index e226ed44..449adac7 100644 --- a/audio/sfx/cry01_2.asm +++ b/audio/sfx/cry01_2.asm @@ -1,24 +1,24 @@ -SFX_Cry01_2_Ch4: - dutycycle 160 - squarenote 4, 15, 3, 1536 - squarenote 8, 13, 5, 1888 - squarenote 3, 14, 2, 1824 - squarenote 8, 13, 1, 1808 - endchannel +SFX_Cry01_2_Ch5: + duty_cycle_pattern 2, 2, 0, 0 + square_note 4, 15, 3, 1536 + square_note 8, 13, 5, 1888 + square_note 3, 14, 2, 1824 + square_note 8, 13, 1, 1808 + sound_ret -SFX_Cry01_2_Ch5: - dutycycle 90 - squarenote 5, 11, 3, 1777 - squarenote 7, 12, 5, 1874 - squarenote 3, 10, 2, 1809 - squarenote 8, 11, 1, 1537 - endchannel +SFX_Cry01_2_Ch6: + duty_cycle_pattern 1, 1, 2, 2 + square_note 5, 11, 3, 1777 + square_note 7, 12, 5, 1874 + square_note 3, 10, 2, 1809 + square_note 8, 11, 1, 1537 + sound_ret -SFX_Cry01_2_Ch7: - noisenote 3, 10, 2, 60 - noisenote 12, 9, 4, 44 - noisenote 3, 8, 2, 28 - noisenote 8, 7, 1, 44 - endchannel +SFX_Cry01_2_Ch8: + noise_note 3, 10, 2, 60 + noise_note 12, 9, 4, 44 + noise_note 3, 8, 2, 28 + noise_note 8, 7, 1, 44 + sound_ret |
