Marshall Code " Patch " Sharing ( Longhand For Now )

  • Thread starter mazzefr
  • Start date
  • This site may earn a commission from merchant affiliate links like Ebay, Amazon, and others.

Springfield Scooter

Well-Known Member
Joined
Apr 13, 2017
Messages
1,995
Reaction score
3,284
The Code includes numerous 2204 presets....
They all sound great, and you can tweek them if you like!
 

Brian Ferrell

New Member
Joined
Oct 1, 2017
Messages
4
Reaction score
5
Here is the complete MIDI layout. Everything is send through continuous controllers.
There where the values have special meanings (like cabinets, amps, preamps, fx, etc) I have added the code numbers for it as well.

This list is long :)
James

So, below example:
MARSHALL_CODE_GAIN: to send GAIN parameter, use CC# 0x46 (dec: 70) and then values 0x00 - 0x64 (dec 0 - 100)
The code sees 100 and makes it into 10.0 (so it divides everything by 10) 58 = 5.8, etc

;---------------- EQ Section --------------------------------------------
Global Const $MARSHALL_CODE_GAIN = 0x46 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_BASS = 0x47 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_MIDDLE = 0x48 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_TREBLE = 0x49 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_VOLUME = 0x4A ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_GATE_THRESHOLD = 0x53 ; 00-64 (0.0 - 10.0)

;---------------- Button Controls -----------------------------------
Global Const $MARSHALL_CODE_PREFX_ONOFF = 0x4B ; 00=Off, 01=On
Global Const $MARSHALL_CODE_PREAMP_ONOFF = 0x51 ; 00=Off, 01=On
Global Const $MARSHALL_CODE_MOD_ONOFF = 0x55 ; 00=Off, 01=On
Global Const $MARSHALL_CODE_DELAY_ONOFF = 0x67 ; 00=Off, 01=On
Global Const $MARSHALL_CODE_REVERB_ONOFF = 0x6C ; 00=Off, 01=On
Global Const $MARSHALL_CODE_POWERAMP_ONOFF = 0x72 ; 00=Off, 01=On
Global Const $MARSHALL_CODE_CAB_ONOFF = 0x74 ; 00=Off, 01=On

;---------------- CABINETS -----------------------------------
Global Const $MARSHALL_CODE_CAB_TYPE = 0x75 ; 00-07 (see below)
Global Const $MARSHALL_CODE_CAB_1960 = 0x00
Global Const $MARSHALL_CODE_CAB_1960V = 0x01
Global Const $MARSHALL_CODE_CAB_1960AX = 0x02
Global Const $MARSHALL_CODE_CAB_1960HW = 0x03
Global Const $MARSHALL_CODE_CAB_1936 = 0x04
Global Const $MARSHALL_CODE_CAB_1936V = 0x05
Global Const $MARSHALL_CODE_CAB_1912 = 0x06
Global Const $MARSHALL_CODE_CAB_1974CX = 0x07

;---------------- Power Amps -----------------------------------
Global Const $MARSHALL_CODE_POWERAMP_TYPE = 0x73 ; 00-03
Global Const $MARSHALL_CODE_POWERAMP_CM100 = 0x00 ; Classic Marshall 100W
Global Const $MARSHALL_CODE_POWERAMP_VM30 = 0x01 ; Vintage Marshall 30W
Global Const $MARSHALL_CODE_POWERAMP_BCLA = 0x02 ; British Class A
Global Const $MARSHALL_CODE_POWERAMP_ACAB = 0x03 ; American Class A/B
Global Const $MARSHALL_CODE_POWERAMP_PRES = 0x76 ; Presence 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_POWERAMP_RES = 0x77 ; Resonance 00-64 (0.0 - 10.0)

;---------------- Reverb -----------------------------------
Global Const $MARSHALL_CODE_REVERB_TYPE = 0x6D ; 00-03
Global Const $MARSHALL_CODE_REVERB_ROOM = 0x00
Global Const $MARSHALL_CODE_REVERB_HALL = 0x01
Global Const $MARSHALL_CODE_REVERB_SPRING = 0x02
Global Const $MARSHALL_CODE_REVERB_STADIUM = 0x03
Global Const $MARSHALL_CODE_REVERB_DECAY = 0x6E ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_REVERB_PREDELAY = 0x6F ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_REVERB_TONE = 0x70 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_REVERB_LEVEL = 0x71 ; 00-64 (0.0 - 10.0)

;---------------- Delay -----------------------------------------
Global Const $MARSHALL_CODE_DELAY_TYPE = 0x68 ; 00-03
Global Const $MARSHALL_CODE_DELAY_STUDIO = 0x00
Global Const $MARSHALL_CODE_DELAY_VINTAGE = 0x01
Global Const $MARSHALL_CODE_DELAY_MULTI = 0x02
Global Const $MARSHALL_CODE_DELAY_REVERSE = 0x03
Global Const $MARSHALL_CODE_DELAY_TIME_MSB = 0x1F ; 00-1F ( 0ms - 31ms multiplied by 128 )
Global Const $MARSHALL_CODE_DELAY_TIME_LSB = 0x3F ; 00-7F ( 0ms - 255ms, added to the above )
Global Const $MARSHALL_CODE_DELAY_TIME_MAX = 4000 ; 4000 = = 0x1F20
Global Const $MARSHALL_CODE_DELAY_FEEDBACK = 0x69 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_DELAY_FREQUENCY = 0x6A ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_DELAY_AGE = 0x6A ; For Vintage Delay Only(0.0 - 10.0)
Global Const $MARSHALL_CODE_DELAY_PATTERN = 0x6A ; For Multi Delay Only (00 - 03)
Global Const $MARSHALL_CODE_DELAY_LEVEL = 0x6B ; 00-64 (0.0 - 10.0)

;---------------- Modulation -----------------------------------------
Global Const $MARSHALL_CODE_MOD_TYPE = 0x56 ; 00-03
Global Const $MARSHALL_CODE_MOD_CHORUS = 0x00
Global Const $MARSHALL_CODE_MOD_FLANGER = 0x01
Global Const $MARSHALL_CODE_MOD_PHASER = 0x02
Global Const $MARSHALL_CODE_MOD_TREMOLO = 0x03
Global Const $MARSHALL_CODE_MOD_MODE = 0x5A ; 00 - 01
Global Const $MARSHALL_CODE_MOD_MODE_CLS = 0x00 ; Classic (for Chorus & Phaser)
Global Const $MARSHALL_CODE_MOD_MODE_VIB = 0x01 ; Vibrato (for Chorus & Phaser)
Global Const $MARSHALL_CODE_MOD_MODE_JET = 0x00 ; Jet Flanger
Global Const $MARSHALL_CODE_MOD_MODE_MET = 0x01 ; Metallic Flanger
Global Const $MARSHALL_CODE_MOD_MODE_VLV = 0x00 ; Valve (Tremolo)
Global Const $MARSHALL_CODE_MOD_MODE_SQR = 0x01 ; Square (Tremolo)
Global Const $MARSHALL_CODE_MOD_SPEED = 0x57 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_MOD_DEPTH = 0x59 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_MOD_TONE = 0x66 ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_MOD_REGEN = 0x66 ; 00-64 (0.0 - 10.0) - For Flanger & Phaser only
Global Const $MARSHALL_CODE_MOD_SKEW = 0x66 ; 00-64 (-50 - +50) - For Tremolo only

;---------------- Pre-Amps -----------------------------------------
Global Const $MARSHALL_CODE_PREAMP_TYPE = 0x52 ; 00-0E
Global Const $MARSHALL_CODE_PRE_CLN_JTM45 = 0x00
Global Const $MARSHALL_CODE_PRE_CLN_DSL = 0x01
Global Const $MARSHALL_CODE_PRE_CLN_USA = 0x02
Global Const $MARSHALL_CODE_PRE_CLN_JVM = 0x03
Global Const $MARSHALL_CODE_PRE_CLN_ACCOUST = 0x04

Global Const $MARSHALL_CODE_PRE_CRN_BLUESB = 0x05
Global Const $MARSHALL_CODE_PRE_CRN_PLEXI = 0x06
Global Const $MARSHALL_CODE_PRE_CRN_USA = 0x07
Global Const $MARSHALL_CODE_PRE_CRN_JCM800 = 0x08
Global Const $MARSHALL_CODE_PRE_CRN_50UK = 0x09

Global Const $MARSHALL_CODE_PRE_OD_JVM = 0x0A
Global Const $MARSHALL_CODE_PRE_OD_DSL = 0x0B
Global Const $MARSHALL_CODE_PRE_OD_USA = 0x0C
Global Const $MARSHALL_CODE_PRE_OD_JUBILEE = 0x0D

Global Const $MARSHALL_CODE_PRE_NATURAL = 0x0E

;---------------- Pre FX -----------------------------------------
Global Const $MARSHALL_CODE_PFX_TYPE = 0x4C ; 00-04
Global Const $MARSHALL_CODE_PFX_COMPRESSOR = 0x00
Global Const $MARSHALL_CODE_PFX_DISTORTION = 0x01
Global Const $MARSHALL_CODE_PFX_AUTOWAH = 0x02
Global Const $MARSHALL_CODE_PFX_PITCHSHIFT = 0x03

Global Const $MARSHALL_CODE_PFX_COM_TONE = 0x4D ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_COM_RATIO = 0x4E ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_COM_COMP = 0x4F ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_COM_LEVEL = 0x50 ; 00-64 (0.0 - 10.0)

Global Const $MARSHALL_CODE_PFX_DIS_MODE = 0x4D ; 00-02 (00: GUV, 01: ODR, 02: DIS)
Global Const $MARSHALL_CODE_PFX_DIS_DRIVE = 0x4E ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_DIS_TONE = 0x4F ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_DIS_LEVEL = 0x50 ; 00-64 (0.0 - 10.0)

Global Const $MARSHALL_CODE_PFX_WAH_MODE = 0x4D ; 00-01 ( 00: ENV, 01: LFO )
Global Const $MARSHALL_CODE_PFX_WAH_FREQ = 0x4E ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_WAH_SENS = 0x4F ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_WAH_RES = 0x50 ; 00-64 (0.0 - 10.0)

Global Const $MARSHALL_CODE_PFX_PSH_SEMI = 0x4D ; 00-18 (-12 - +12)
Global Const $MARSHALL_CODE_PFX_PSH_FINE = 0x4E ; 00-64 (-50 - +50)
Global Const $MARSHALL_CODE_PFX_PSH_REGEN = 0x4F ; 00-64 (0.0 - 10.0)
Global Const $MARSHALL_CODE_PFX_PSH_MIX = 0x50 ; 00-64 (0.0 - 10.0)

Can the volume level be changed via a midi foot controller? I want to boost volume without overdriving the preamp.
 

mximumovrdrv

New Member
Joined
Oct 18, 2017
Messages
3
Reaction score
1
Just wanted to thank you guys for putting in the work to create the patches and setting up this community. My code 100 combo got here yesterday, and have already used several of the patches you guys have made. When I was researching what amp I wanted to get, I stumbled upon this community and it made my decision pretty easy. Keep up the good work.
 

johncart

Member
Joined
Aug 20, 2017
Messages
34
Reaction score
20
Location
western ma usa
I got a Ronnie Montrose preset I like...especially when doing "Rock the Nation"
(Prefx-compressor, 4.0 1.5, 10, 10), (Amp- OD American, 5.5), (Del- 673, 5.5, 4.7, 3.0) (Rev- Hall, 5.6, 1.1, 9.4, 4.4)
(Pwr- Classic marshall 100w, 1.6, 6.0), (Cab-1960)
(gain-1.8) (Bass- 1.7) (Mid- 6.2) (Treb- 3.3) (Vol 10)
fiddle with those if you want...use the master volume to dial in a comfortable spot for where you are playing
 
Last edited:

Paolo

New Member
Joined
Oct 2, 2016
Messages
9
Reaction score
1
Hi guys.
Can you help me please to create a patch to get a nice clean soft jazz sound?
Thanks
 

kustombob

Well-Known Member
Joined
Apr 25, 2015
Messages
362
Reaction score
529
Location
By Louville Ky
Your Metallica sound was killer/ Right on for my ears. Amazing that Code could sound that good. Great job.
 

Chris aitken

New Member
Joined
Nov 1, 2017
Messages
3
Reaction score
0
Hi there, I don't suppose anyone has the settings to get Dire Straits - local hero tone? I've been messing about with the amp for ages & can't seem to get it right :-( & any other Dire Straits/Mark Knopfler tones you awesome people have would be very much appreciated :)

Cheers
 
Last edited:

johncart

Member
Joined
Aug 20, 2017
Messages
34
Reaction score
20
Location
western ma usa
Here's three presets i made; first one I call Bandmaster, the 2nd I call JTM Clone, and last one i call BRIDGE OF SIGHS

BANDMASTER
PREFX-COMPRESSOR- (4.8, 1.7, 7.4. 4.7) AMP-CL AMERICAN-(4.2) DELAY- STUDIO-(467, 2.9, 2.7, 4.2)
REV-SPRING-(5.0, 4.0, 1.4, 5.0) PWR,-CLASSIC MARSHALL 100 WTT- (5.2, 6.6)
CAB- 1972 GAIN-2.6, BASS-3.3, MID-3.8, TREB-3.2, VOL-4.9


JTM CLONE
PREFX-COMPRESSOR-(3.8, 5.8, 10, 5.3) AMP-CL AMERICAN-(5.4) DELAY-STUDIO-(377, 4.9, 2.2, 5.0)
REV-HALL-(6.7, 5.7, 4.7, 5.7) POWER-AMERICAN CLASS A/B-(5.5, 7.6)
CAB-1960, GAIN-2.0, BASS-2.5. MID-7.8, TREBLE-3.7, VOLUME-4.9


BRIDGE OF SIGHS
PREFX-(2.5, 3.7, 9.7, 8.7) AMP-SILVER JUBLIEE- (.4) MOD-PHASER-VBE,(3.7, 3.5, 3.4) DELAY-STUDIO(507, 6.6, 7.6, 4.4) REV-HALL-(6.8, 5.7, 4.6, 4.5)
PWR-CLASSIC MARSHALL 100W-(2.9, 2.5) CAB-1960X
GAIN-1.0, BASS-3.0, MID-3.5, TREBLE-7.4, VOL-2.4

All these I adjust master volume to room level I want
 
Last edited:
Top