Guest User

Access Virus TI MIDI SysEx Implementation

a guest
Apr 20th, 2020
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.42 KB | None | 0 0
  1. Virus SysEx-Implementation .txt
  2. Today
  3. 5:01 PM
  4. M
  5. Mihaly Sipos uploaded an item
  6. Text
  7. Virus SysEx-Implementation .txt
  8.  
  9. VIRUS - TI - SYSEX - IMPLEMENTATION
  10. -----------------------------------
  11.  
  12. (# = only Virus TI, not marked = Virus A,B,C and TI)
  13. ($ = HEXADECIMAL REPRESENTATION)
  14. (% = BINARY REPRESENTATION)
  15.  
  16. The CheckSum is the sum of all values AND %01111111 (7bit). Set CheckSum to 0 right before you receive [DeviceId]. [DeviceId] is the first Value becoming summed up.
  17.  
  18. <START>
  19.  
  20. $F0 ...
  21.  
  22. ... $00 $20 $33 ... <--- this is an access - product
  23.  
  24. ... $01 ... <----- this is a "VIRUS"
  25.  
  26. <now set internal checksum to 0 !>
  27.  
  28. ... [DeviceId]
  29. 0..15
  30. 16..127 = Omni *1
  31.  
  32. ... [FunctionId]
  33. $10 or $11 or ...
  34. ... $30 or $31 or $32 or $33 or $34 or...
  35. ... $37 or ...
  36. ... #$6E or #$6F or $70 or $71 or $72
  37.  
  38. IF [FunctionId] == ...
  39.  
  40. $10:SINGLE-DUMP
  41. $11:MULTI-DUMP
  42.  
  43. $30:SINGLE-PROGRAM-REQUEST
  44. $31:MULTI-PROGRAM-REQUEST
  45. $32:SINGLE-BANK-REQUEST
  46. $34:ARRANGEMENT-REQUEST
  47. $37:CONTROLLER-REQUEST
  48.  
  49. #$6E:PARAMETER-BANK-D (SINGLE (MOD-MATRIX, REVERB) *4 *5)
  50. #$6F:PARAMETER-BANK-E (SINGLE (ARPEGGIATOR) *4 *5)
  51. $70:PARAMETER-BANK-A (SINGLE (CONTROL-CHANGE) *5)
  52. $71:PARAMETER-BANK-B (SINGLE (POLY-PRESSURE) *5)
  53. $72:PARAMETER-BANK-C (MULTI)
  54.  
  55. -------------------------------------------------------------
  56.  
  57. // if $10:SINGLE-DUMP
  58.  
  59. ... [Bank]
  60. 0=EditBuffer,
  61. 1=RAM Bank A, 2=RAM Bank B, 3=RAM Bank C, 4=RAM Bank D,
  62. 5=ROM Bank A, 6=ROM Bank B, ...
  63. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  64.  
  65. ... [Prog/Part]
  66. 0..15, $40 if Bank = 0
  67. adressing the Edit-Buffers (0..15=Multi-Part or $40=Single-Mode-Edit-Buffer)
  68. 0..127 if Bank = [1..31]
  69. 0..15, if Bank = [32..47]
  70.  
  71. ... {256*[Data]} [CheckSum1] {256*[Data]} [CheckSum2] ...
  72.  
  73. ... $F7 //END
  74.  
  75. Checksum2 contains Checksum1 - do not reset your internal
  76. checksum to zero after receiving a correct Checksum1.
  77. If receiving there is only need to test for a correct
  78. Checksum2. The two checksums are to keep compatibility to
  79. Virus A .. Virus C. *3
  80.  
  81. -------------------------------------------------------------
  82.  
  83. // if $11:MULTI-DUMP
  84.  
  85. ... [Bank]
  86. 0=EditBuffer,
  87. 1=Multis,
  88. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  89.  
  90. ... [Prog/Part]
  91. don't care, if Bank = 0
  92. (0..127, if Bank = 1 - later!!!)
  93. don't care, if Bank = [32..47]
  94.  
  95. ... {256*[Data]} [CheckSum] ...
  96.  
  97. ... $F7 //END
  98.  
  99. -------------------------------------------------------------
  100.  
  101. // if $30:SINGLE-PROGRAM-REQUEST
  102.  
  103. ... [Bank]
  104. 0=EditBuffer,
  105. 1=RAM Bank A, 2=RAM Bank B, 3=RAM Bank C, 4=RAM Bank D,
  106. 5=ROM Bank A, 6=ROM Bank B, ...
  107. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  108.  
  109. ... [Prog/Part]
  110. 0..15, $40 if Bank = 0
  111. adressing the Edit-Buffers (0..15=Multi-Part / $40=Single-Mode-Edit-Buffer)
  112. 0..127 if Bank = [1..31]
  113. 0..15, if Bank = [32..47]
  114.  
  115. ... $F7 //END
  116.  
  117. -------------------------------------------------------------
  118.  
  119. // if $31:MULTI-PROGRAM-REQUEST (requests the Multi-Program only! Embedded Single-Programs are not requested)
  120.  
  121. ... [Bank]
  122. 0=EditBuffer,
  123. (1=Multis - later!!!)
  124. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  125.  
  126. ... [Prog/Part]
  127. don't care, if Bank = 0
  128. (0..127, if Bank = 1 - later!!!)
  129. don't care, if Bank = [32..47]
  130.  
  131. ... $F7 //END
  132.  
  133. -------------------------------------------------------------
  134.  
  135. // if $32:SINGLE-BANK-REQUEST
  136.  
  137. ... [Bank]
  138. 1=RAM Bank A, 2=RAM Bank B, 3=RAM Bank C, 4=RAM Bank D,
  139. 5=ROM Bank A, 6=ROM Bank B, ...
  140. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  141.  
  142. ... $F7 //END
  143.  
  144. -------------------------------------------------------------
  145.  
  146. // if $34:ARRANGEMENT-REQUEST
  147.  
  148. ... [Bank]
  149. 0=EditBuffer,
  150. 32=Embedded Multi 0, 33=Embedded Multi 1, ..., 47=Embedded Multi 15
  151.  
  152. ... $F7 //END
  153.  
  154. -------------------------------------------------------------
  155.  
  156. // if #$6E:PARAMETER-BANK-D (SINGLE (MOD-MATRIX, REVERB) *4 *5)
  157. // if #$6F:PARAMETER-BANK-E (SINGLE (ARPEGGIATOR) *4 *5)
  158. // if $70:PARAMETER-BANK-A (SINGLE (CONTROL-CHANGE) *5)
  159. // if $71:PARAMETER-BANK-B (SINGLE (POLY-PRESSURE) *5)
  160. // if $72:PARAMETER-BANK-C (MULTI)
  161.  
  162. ... [PartNumber]
  163. $7F: PanelPart (this is the Part, the Panel is actually showing)
  164. $40: Single-Mode-Edit-Buffer
  165. 0..15 Multi-Part
  166.  
  167. ... [ParameterNumber]
  168. 0..127
  169.  
  170. ... [Value]
  171. 0..127
  172.  
  173. ... $F7 //END
  174.  
  175. #############################################################################
  176.  
  177. *1:
  178. Beim sendenden Gerät eingestellt ist sichergestellt, dass ein
  179. empfangender Virus immer Daten entgegennimmt, egal, welche Device-Id
  180. beim empfangenden Virus eingestellt ist.
  181. Beim empfangenden Gerät eingestellt ist sichergestellt, dass der
  182. empfangende Virus immer Daten entgegennimmt, egal, welche Device-Id
  183. beim sendenden Virus eingestellt ist.
  184.  
  185. *3:
  186.  
  187. Der Trick, um Sounds der alten Virus kompatibel zum neuen Virus zu machen, besteht in dem zweiten 256-Byte-Block.
  188. Dieser hat eine separate CheckSumme. Damit bleiben Bulks in beide Richtungen kompatibel.
  189. Es wird also nach dem ersten Datenblock (nach den ersten 256 Bytes) bereits eine Checksumme gesendet!!!
  190.  
  191. VIRUS A-C:
  192. SINGLE DUMP CONSISTS OF:
  193. [Bank] [Prog] {256*[Data]} [CheckSum]
  194.  
  195. VIRUS TI, TI2, SNOW:
  196. SINGLE DUMP CONSISTS OF:
  197. [Bank] [Prog] {256*[Data]} [CheckSum1] (256*[Data]) [CheckSum2]
  198.  
  199. *5:
  200. The Parameter-Numbers coexist in Sys-Ex-Parameter-Number-Adressing and Memory Locations in the Sound-Dumps.
  201. ..whereas
  202. Bank A ($70) 0..127
  203. Bank B ($71) 128..255
  204. Bank D ($6E) 256..383 <- This is weired, but eh!
  205. Bank E ($6F) 384..511
  206.  
  207. *8:
  208. This is only internal - the parameters are received but not send by the Virus.
  209.  
  210.  
  211. Documentation is subject to change without notice!
  212.  
  213. Feel free to contact me to get further information: mailto:jm@access-music.de
  214.  
  215. #############################################################################
  216.  
  217. ; Bank A ($70) - Addresses 0..127
  218. 0 $_
  219. 1 $_Single Patchmanagement/Flags $_CC/Modulation Wheel CC01
  220. 2 $_Single Patchmanagement/Original Bank $_CC/Breath Controller CC02
  221. 3 $_Single Patchmanagement/Original Patch $_CC/MIDI Controller CC03
  222. 4 $_CC/Foot Controller CC04
  223. 5 $_Portamento
  224. 6 $_CC/Data Slider CC06
  225. 7 $_Part Volume
  226. 8 $_CC/Balance CC08
  227. 9 $_CC/MIDI Controller CC09
  228. 10 $_Patch Panorama
  229. 11 $_CC/Expression 11
  230. 12 $_CC/MIDI Controller 12
  231. 13 $_CC/MIDI Controller 13
  232. 14 $_CC/MIDI Controller 14
  233. 15 $_CC/MIDI Controller 15
  234. 16 $_CC/MIDI Controller 16
  235. 17 $_Oscillator 1 Waveform Shape $_Oscillator 1 Density $_Oscillator 1 Wavetable Index
  236. 18 $_Oscillator 1 Pulsewidth $_Oscillator 1 Local Detune
  237. 19 $_Oscillator 1 Wave Select $_Oscillator 1 Wavetable
  238. 20 $_Oscillator 1 Detune In Semitones
  239. 21 $_Oscillator 1 Keyfollow
  240. 22 $_Oscillator 2 Shape $_Oscillator 2 Density $_Oscillator 2 Wavetable Index
  241. 23 $_Oscillator 2 Pulsewidth $_Oscillator 2 Local Detune
  242. 24 $_Oscillator 2 Wave Select $_Oscillator 2 Wavetable
  243. 25 $_Oscillator 2 Detune In Semitones
  244. 26 $_Oscillator 2 Fine Detune
  245. 27 $_FM Amount $_X-Sync Frequency $_FM Amount
  246. 28 $_Oscillator 1 Sync
  247. 29 $_Filter Envelope --> Pitch $_Filter Envelope --> Pitch $_Filter Envelope --> Pitch
  248. 30 $_Filter Envelope --> FM $_Filter Envelope --> X-Sync $_Filter Envelope --> FM
  249. 31 $_Oscillator 2 Keyfollow
  250. 32
  251. 33 $_Oscillator Balance
  252. 34 $_Sub Oscillator Volume
  253. 35 $_Sub Oscillator Waveform Shape
  254. 36 $_Oscillator Section Volume
  255. 37 $_Noise Oscillator Volume
  256. 38
  257. 39 $_Noise Color
  258. 40 $_Filter 1 Cutoff $_Vocoder Carrier Center Frequency
  259. 41 $_Filter 2 Cutoff $_Filter 2 Offset (For Filter Link) $_Vocoder Modulator Center Frequency $_Vocoder Modulator Frequency Offset
  260. 42 $_Filter Resonance 1+2 $_Filter 1 Resonance $_Vocoder Q-Factor $_Vocoder Carrier Q-Factor
  261. 43 $_Filters/Resonance Helper $_Filter 2 Resonance $_ $_Vocoder Modulator Q-Factor
  262. 44 $_Filter Envelope Amount 1+2 $_Filter 1 Envelope Amount
  263. 45 $_Filters/Envelope Helper $_Filter 2 Envelope Amount
  264. 46 $_Filter Keyfollow 1+2 $_Filter 1 Keyfollow $_Vocoder Frequency Spread $_Vocoder Carrier Frequency Spread
  265. 47 $_Filters/Keyfollow Helper $_Filter 2 Keyfollow $_pread $_VocoderModulator Frequency Spread
  266. 48 $_Filter Balance $_Vocoder Balance (Dry-Wet)
  267. 49 $_Voice Saturation Type
  268. 50 $_Ring Modulator Volume
  269. 51 $_Filter 1 Mode
  270. 52 $_Filter 2 Mode
  271. 53 $_Filter Routing
  272. 54 $_Filter Envelope Attack $_Vocoder Envelope Attack $_Input Follower Envelope Attack
  273. 55 $_Filter Envelope/Decay $_ $_Vocoder Envelope Release
  274. 56 $_Filter Envelope/Sustain $_Input Follower/Level
  275. 57 $_Filter Envelope/Sustain Slope $_Vocoder Spectral Balance
  276. 58 $_Filter Envelope/Release $_ $_Vocoder Amount Of Synthesis Bands $_Input Follower Envelope Release
  277. 59 $_Amplifier Envelope/Attack
  278. 60 $_Amplifier Envelope/Decay
  279. 61 $_Amplifier Envelope/Sustain
  280. 62 $_Amplifier Envelope/Sustain Slope
  281. 63 $_Amplifier Envelope/Release
  282. 64 $_CC/Hold Pedal 64
  283. 65 $_CC/Portamento Pedal 65
  284. 66 $_CC/Sostenuto Pedal 66
  285. 67 $_LFO 1/Rate
  286. 68 $_LFO 1/Waveform Shape
  287. 69 $_LFO 1 Envelope Mode
  288. 70 $_LFO 1 Mode
  289. 71 $_LFO 1/Waveform Contour
  290. 72 $_LFO 1 Keyfollow
  291. 73 $_LFO 1 Trigger Phase
  292. 74 $_LFO 1 --> Osc 1+2 $_LFO 1 --> Osc 1
  293. 75 $_LFO 1 --> Osc 2
  294. 76 $_LFO 1 --> Pulsewidth
  295. 77 $_LFO 1 -->Filter Resonance 1+2
  296. 78 $_LFO 1 --> Filter Envelope Gain
  297. 79 $_LFO 2/Rate
  298. 80 $_LFO 2/Waveform Shape
  299. 81 $_LFO 2/Envelope Mode
  300. 82 $_LFO 2 Mode
  301. 83 $_LFO 2 Waveform Contour
  302. 84 $_LFO 2/Keyfollow
  303. 85 $_LFO 2/Trigger Phase
  304. 86 $_LFO 2 --> Shape 1+2
  305. 87 $_LFO 2 --> FM Amount
  306. 88 $_LFO 2 --> Cutoff 1+2 $_LFO 2 --> Cutoff 1
  307. 89 $_LFO 2 --> Cutoff 2
  308. 90 $_LFO 2 --> Panorama
  309. 91 $_Patch Volume
  310. 92
  311. 93 $_Patch Transposition
  312. 94 $_Oscillator Section Keyboard Mode
  313. 95
  314. 96
  315. 97
  316. 98
  317. 99
  318. 100
  319. 101
  320. 102
  321. 103 $_Chorus/Type
  322. 104 $_Chorus/Mix
  323. 105 $_Chorus/Mix
  324. 106 $_Chorus/LFO Rate $_Chorus/Speed
  325. 107 $_Chorus/LFO Depth $_Chorus/Distance
  326. 108 $_Chorus/Delay $_Chorus/Amount $_Chorus/Mic Angle
  327. 109 $_Chorus/Feedback $_Chorus/LowHigh Balance
  328. 110 $_Chorus/LFO Shape
  329. 111 $_Chorus/X Over
  330. 112 $_Delay Mode
  331. 113 $_Delay Send
  332. 114 $_Delay Time (ms) $_Delay Tape Delay Time (ms)
  333. 115 $_Delay Feedback $_Delay Tape Delay Feedback
  334. 116 $_Delay LFO Rate
  335. 117 $_Delay LFO Depth $_Delay Tape Delay Modulation
  336. 118 $_Delay LFO Shape
  337. 119 $_Delay Color $_Delay Tape Delay Frequency
  338. 120
  339. 121
  340. 122 $_CC/Local On
  341. 123 $_CC/All Notes Off
  342. 124
  343. 125
  344. 126
  345. 127
  346.  
  347. ; Bank B ($71) - Addresses 128..255
  348. 0
  349. 1
  350. 2 $_Arpeggiator/Pattern
  351. 3 $_Arpeggiator Range In Octaves
  352. 4 $_Arpeggiator Hold Mode
  353. 5 $_Arpeggiator Note Length
  354. 6 $_Arpeggiator Swing Factor
  355. 7 $_LFO 3/Rate
  356. 8 $_LFO 3/Waveform Shape
  357. 9 $_LFO 3 Mode
  358. 10 $_LFO 3 Keyfollow
  359. 11 $_LFO 3 User Destination
  360. 12 $_LFO 3 User Destination Amount
  361. 13 $_LFO 3/Fade In Time
  362. 14
  363. 15 $_Arpeggiator/Mode
  364. 16 $_Tempo (Disabled When Used With Virus Control)
  365. 17 $_Arpeggiator Clock
  366. 18 $_LFO 1/Clock
  367. 19 $_LFO 2/Clock
  368. 20 $_Delay Clock
  369. 21 $_LFO 3/Clock
  370. 22
  371. 23
  372. 24
  373. 25 $_Parameter Smooth Mode
  374. 26 $_Bender Up Range
  375. 27 $_Bender Down Range
  376. 28 $_Bender Scale
  377. 29
  378. 30 $_Filter 1 Envelope Polarity
  379. 31 $_Filter 2 Polarity
  380. 32 $_Filter Cutoff Link
  381. 33 $_Filter Keyfollow Base
  382. 34 $_FM Mode $_Wavetable Oscillator FM Mode
  383. 35 $_Oscillator Section Initial Phase
  384. 36 $_Oscillator Punch Intensity
  385. 37
  386. 38 $_Input Follower/Select
  387. 39 $_Vocoder Mode
  388. 40
  389. 41 $_Oscillator 3 Model
  390. 42 $_Oscillator 3 Volume
  391. 43 $_Oscillator 3 Detune In Semitone
  392. 44 $_Oscillator 3 Fine Detune
  393. 45 $_EQ/Low Frequency (Hz)
  394. 46 $_EQ/High Frequency (kHz)
  395. 47 $_Velocity -->Osc1 Waveform Shape
  396. 48 $_Velocity --> Osc2 Waveform Shape
  397. 49 $_Velocity --> Pulsewidth
  398. 50 $_Velocity --> FM Amount
  399. 51 $_Soft Knob 1 Name
  400. 52 $_Soft Knob 2 Name
  401. 53 $_Soft Knob 3 Name
  402. 54 $_Velocity --> Filter 1 Envelope Amount
  403. 55 $_Velocity --> Filter 2 Envelope Amount
  404. 56 $_Velocity -->Filter 1 Resonance
  405. 57 $_Velocity --> Filter 2 Resonance
  406. 58 $_Surround Channel Balance
  407. 59
  408. 60 $_Velocity --> Volume
  409. 61 $_Velocity --> Panorama
  410. 62 $_Soft Knob 1 Destination
  411. 63 $_Soft Knob 2 Destination
  412. 64 $_Mod Matrix Slot 1/Source
  413. 65 $_Mod Matrix Slot 1/Destination 1
  414. 66 $_Mod Matrix Slot 1/Amount 1
  415. 67 $_Mod Matrix Slot 2/Source
  416. 68 $_Mod Matrix Slot 2/Destination 1
  417. 69 $_Mod Matrix Slot 2/Amount 1
  418. 70 $_Mod Matrix Slot 2/Destination 2
  419. 71 $_Mod Matrix Slot 2/Amount 2
  420. 72 $_Mod Matrix Slot 3/Source
  421. 73 $_Mod Matrix Slot 3/Destination 1
  422. 74 $_Mod Matrix Slot 3/Amount 1
  423. 75 $_Mod Matrix Slot 3/Destination 2
  424. 76 $_Mod Matrix Slot 3/Amount 2
  425. 77 $_Mod Matrix Slot 3/Destination 3
  426. 78 $_Mod Matrix Slot 3/Amount 3
  427. 79 $_LFO 1 User Destination
  428. 80 $_LFO 1 User Destination Amount
  429. 81 $_LFO 2 User Destination
  430. 82 $_LFO 2 User Destination Amount
  431. 83
  432. 84 $_Phaser/Stages
  433. 85 $_Phaser/Mix
  434. 86 $_Phaser/LFO Rate
  435. 87 $_Phaser/Depth
  436. 88 $_Phaser/Frequency
  437. 89 $_Phaser/Feedback
  438. 90 $_Phaser/Spread
  439. 91
  440. 92 $_EQ/Mid Gain (dB)
  441. 93 $_EQ/Mid Frequency (Hz)
  442. 94 $_EQ/Mid Q-Factor
  443. 95 $_EQ/Low Gain (dB)
  444. 96 $_EQ/High Gain (dB)
  445. 97 $_Character Intensity
  446. 98 $_Character Tune
  447. 99 $_Ring Modulator Mix
  448. 100 $_Distortion Type
  449. 101 $_Distortion Intensity
  450. 102
  451. 103 $_Mod Matrix Slot 4/Source
  452. 104 $_Mod Matrix Slot 4/Destination 1
  453. 105 $_Assign Slot 4/Amount 1
  454. 106 $_Mod Matrix Slot 5/Source
  455. 107 $_Mod Matrix Slot 5/Destination 1
  456. 108 $_Mod Matrix Slot 5/Amount 1
  457. 109 $_Mod Matrix Slot 6/Source
  458. 110 $_Mod Matrix Slot 6/Destination 1
  459. 111 $_Mod Matrix Slot 6/Amount 1
  460. 112 $_Single Patch Name/Character 01
  461. 113 $_Single Patch Name/Character 02
  462. 114 $_Single Patch Name/Character 03
  463. 115 $_Single Patch Name/Character 04
  464. 116 $_Single Patch Name/Character 05
  465. 117 $_Single Patch Name/Character 06
  466. 118 $_Single Patch Name/Character 07
  467. 119 $_Single Patch Name/Character 08
  468. 120 $_Single Patch Name/Character 09
  469. 121 $_Single Patch Name/Character 10
  470. 122 $_Filter Select
  471. 123 $_Patch Category 1
  472. 124 $_Patch Category 2
  473. 125
  474. 126
  475. 127 $_Oscillators/Select
  476.  
  477. ; Bank C ($6E) - Addresses 256..383
  478. 0
  479. 1 $_Reverb/Mode
  480. 2 $_Reverb/Send
  481. 3 $_Reverb/Type
  482. 4 $_Reverb/Time
  483. 5 $_Reverb/Damping
  484. 6 $_Reverb/Color
  485. 7 $_Reverb/Predelay
  486. 8 $_Reverb/Clock
  487. 9 $_Reverb/Feedback
  488. 10 $_Delay Type
  489. 11
  490. 12 $_Delay Tape Delay Ratio
  491. 13 $_Delay Tape Delay Clock Left
  492. 14 $_Delay Tape Delay Clock Right
  493. 15
  494. 16
  495. 17 $_Delay Tape Delay Bandwidth
  496. 18
  497. 19 $_Frequency Shifter Type
  498. 20 $_Frequency Shifter Mix
  499. 21 $_Frequency Shifter Frequency $_Frequency Shifter Frequency $_Frequency Shifter Frequency
  500. 22 $_Frequency Shifter Stereo Phase
  501. 23 $_Frequency Shifter Left Shape
  502. 24 $_Frequency Shifter Right Shape
  503. 25 $_Frequency Shifter Resonance
  504. 26 $_Character Type
  505. 27
  506. 28 $_Soft Knob 3 Destination
  507. 29
  508. 30 $_Oscillator 1 Model
  509. 31
  510. 32
  511. 33
  512. 34
  513. 35 $_Oscillator 2 Model
  514. 36
  515. 37 $_Oscillator 1 Formant Spread
  516. 38
  517. 39
  518. 40
  519. 41
  520. 42 $_Oscillator 1 Formant Shift
  521. 43 $_Oscillator 1 Local Detune
  522. 44 $_Oscillator 1 Interpolation
  523. 45
  524. 46
  525. 47
  526. 48
  527. 49
  528. 50
  529. 51
  530. 52
  531. 53
  532. 54
  533. 55
  534. 56
  535. 57 $_Oscillator 2 Formant Spread
  536. 58
  537. 59
  538. 60
  539. 61
  540. 62 $_Oscillator 2 Formant Shift
  541. 63 $_Oscillator 2 Local Detune
  542. 64 $_Oscillator 2 Interpolation
  543. 65
  544. 66
  545. 67
  546. 68
  547. 69
  548. 70 $_Distortion Treble Booster
  549. 71 $_Distortion High Cut
  550. 72 $_Distortion Mix
  551. 73 $_Distortion Quality
  552. 74 $_Distortion Tone W $_Distortion Tone N
  553. 75
  554. 76
  555. 77
  556. 78
  557. 79
  558. 80
  559. 81
  560. 82
  561. 83
  562. 84
  563. 85
  564. 86
  565. 87
  566. 88
  567. 89
  568. 90 $_Mod Matrix Slot 1/Destination 2
  569. 91 $_Mod Matrix Slot 1/Amount 2
  570. 92 $_Mod Matrix Slot 1/Destination 3
  571. 93 $_Mod Matrix Slot 1/Amount 3
  572. 94 $_Mod Matrix Slot 2/Destination 3
  573. 95 $_Mod Matrix Slot 2/Amount 3
  574. 96 $_Mod Matrix Slot 4/Destination 2
  575. 97 $_Assign Slot 4/Amount 2
  576. 98 $_Mod Matrix Slot 4/Destination 3
  577. 99 $_Mod Matrix Slot 4/Amount 3
  578. 100 $_Mod Matrix Slot 5/Destination 2
  579. 101 $_Mod Matrix Slot 5/Amount 2
  580. 102 $_Mod Matrix Slot 5/Destination 3
  581. 103 $_Mod Matrix Slot 5/Amount 3
  582. 104 $_Mod Matrix Slot 6/Destination 2
  583. 105 $_Mod Matrix Slot 6/Amount 2
  584. 106 $_Mod Matrix Slot 6/Destination 3
  585. 107 $_Mod Matrix Slot 6/Amount 3
  586. 108
  587. 109
  588. 110 $_LFO 1/BackupShape
  589. 111 $_LFO 2/BackupShape
  590. 112 $_LFO 3/BackupShape
  591. 113
  592. 114
  593. 115 $_Assigns/Slot Select
  594. 116 $_LFOs/Select
  595. 117 $_FX Upper/Select
  596. 118 $_FX Lower/Select
  597. 119
  598. 120
  599. 121
  600. 122 $_Oscillators/BackupKeyMode
  601. 123 $_Arpeggiator/BackupMode
  602. 124 $_Oscillator 3/BackupMode
  603. 125
  604. 126
  605. 127 $_Arpeggiator Pattern Length
  606.  
  607. ; Bank D ($6F) - Addresses 384..511
  608. 0 $_Step 1 Length
  609. 1 $_Step 1 Velocity
  610. 2 $_*
  611. 3 $_Step 2 Length
  612. 4 $_Step 2 Velocity
  613. 5 $_*
  614. 6 $_Step 3 Length
  615. 7 $_Step 3 Velocity
  616. 8 $_*
  617. 9 $_Step 4 Length
  618. 10 $_Step 4 Velocity
  619. 11 $_*
  620. 12 $_Step 5 Length
  621. 13 $_Step 5 Velocity
  622. 14 $_*
  623. 15 $_Step 6 Length
  624. 16 $_Step 6 Velocity
  625. 17 $_*
  626. 18 $_Step 7 Length
  627. 19 $_Step 7 Velocity
  628. 20 $_*
  629. 21 $_Step 8 Length
  630. 22 $_Step 8 Velocity
  631. 23 $_*
  632. 24 $_Step 9 Length
  633. 25 $_Step 9 Velocity
  634. 26 $_*
  635. 27 $_Step 10 Length
  636. 28 $_Step 10 Velocity
  637. 29 $_*
  638. 30 $_Step 11 Length
  639. 31 $_Step 11 Velocity
  640. 32 $_*
  641. 33 $_Step 12 Length
  642. 34 $_Step 12 Velocity
  643. 35 $_*
  644. 36 $_Step 13 Length
  645. 37 $_Step 13 Velocity
  646. 38 $_*
  647. 39 $_Step 14 Length
  648. 40 $_Step 14 Velocity
  649. 41 $_*
  650. 42 $_Step 15 Length
  651. 43 $_Step 15 Velocity
  652. 44 $_*
  653. 45 $_Step 16 Length
  654. 46 $_Step 16 Velocity
  655. 47 $_*
  656. 48 $_Step 17 Length
  657. 49 $_Step 17 Velocity
  658. 50 $_*
  659. 51 $_Step 18 Length
  660. 52 $_Step 18 Velocity
  661. 53 $_*
  662. 54 $_Step 19 Length
  663. 55 $_Step 19 Velocity
  664. 56 $_*
  665. 57 $_Step 20 Length
  666. 58 $_Step 20 Velocity
  667. 59 $_*
  668. 60 $_Step 21 Length
  669. 61 $_Step 21 Velocity
  670. 62 $_*
  671. 63 $_Step 22 Length
  672. 64 $_Step 22 Velocity
  673. 65 $_*
  674. 66 $_Step 23 Length
  675. 67 $_Step 23 Velocity
  676. 68 $_*
  677. 69 $_Step 24 Length
  678. 70 $_Step 24 Velocity
  679. 71 $_*
  680. 72 $_Step 25 Length
  681. 73 $_Step 25 Velocity
  682. 74 $_*
  683. 75 $_Step 26 Length
  684. 76 $_Step 26 Velocity
  685. 77 $_*
  686. 78 $_Step 27 Length
  687. 79 $_Step 27 Velocity
  688. 80 $_*
  689. 81 $_Step 28 Length
  690. 82 $_Step 28 Velocity
  691. 83 $_*
  692. 84 $_Step 29 Length
  693. 85 $_Step 29 Velocity
  694. 86 $_*
  695. 87 $_Step 30 Length
  696. 88 $_Step 30 Velocity
  697. 89 $_*
  698. 90 $_Step 31 Length
  699. 91 $_Step 31 Velocity
  700. 92 $_*
  701. 93 $_Step 32 Length
  702. 94 $_Step 32 Velocity
  703. 95 $_*
  704. 96
  705. 97
  706. 98
  707. 99
  708. 100
  709. 101
  710. 102
  711. 103
  712. 104
  713. 105
  714. 106
  715. 107
  716. 108
  717. 109
  718. 110
  719. 111
  720. 112
  721. 113
  722. 114
  723. 115
  724. 116
  725. 117
  726. 118
  727. 119
  728. 120 $_Unison Mode
  729. 121 $_Unison Detune
  730. 122 $_Unison Panorama Spread
  731. 123 $_Unison LFO Phase Offset
  732. 124 $_Input Mode
  733. 125 $_Input Select
  734. 126 $_Atomizer $_Atomizer
  735. 127
  736.  
  737. ;**********************EOF***************************************************
Add Comment
Please, Sign In to add comment