mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
25 lines
509 B
Plaintext
25 lines
509 B
Plaintext
// Synth initialize. This is my personal file
|
|
|
|
|
|
// GM Reset. May or may not be a good idea. See reset.mma for comments.
|
|
|
|
MIDI 0xF0 0x05 0x7E 0x7F 0x09 0x01 0xF7
|
|
|
|
// Loop to set channel volume to 80
|
|
|
|
Set Channel 0xb0
|
|
10
|
|
MIDI $Channel 0x07 0x50 // channel volume == 80
|
|
Inc Channel
|
|
If LE $Channel 0xbf
|
|
goto 10
|
|
Endif
|
|
|
|
MIDI 0xb0 0x07 0x7f // set track 0 volume to max
|
|
|
|
// Give a moment of rest to make sure everything takes.
|
|
// Probably not needed for most syths, but doesn't hurt.
|
|
|
|
beatadjust 1
|
|
|