ecutools 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/.bundle/config +3 -0
  2. data/.gitignore +4 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +17 -0
  5. data/bin/ecutools +4 -0
  6. data/ecutools.gemspec +29 -0
  7. data/lib/assembler.rb +22 -0
  8. data/lib/cli.rb +28 -0
  9. data/lib/disassembler.rb +219 -0
  10. data/lib/helpers.rb +84 -0
  11. data/lib/instruction.rb +53 -0
  12. data/lib/version.rb +3 -0
  13. data/tests/52690021.asm +262151 -0
  14. data/tests/52690021.hex +0 -0
  15. data/xml/code/52690021.xml +19 -0
  16. data/xml/ram/52690021.xml +45 -0
  17. data/xml/rom/52370023.xml +641 -0
  18. data/xml/rom/52370024.xml +813 -0
  19. data/xml/rom/52690019.xml +25 -0
  20. data/xml/rom/52690021.xml +1156 -0
  21. data/xml/rom/52690022.xml +25 -0
  22. data/xml/rom/52690024.xml +896 -0
  23. data/xml/rom/52690122.xml +79 -0
  24. data/xml/rom/53050006.xml +583 -0
  25. data/xml/rom/53050007.xml +25 -0
  26. data/xml/rom/53050009.xml +950 -0
  27. data/xml/rom/53050011.xml +25 -0
  28. data/xml/rom/53050012.xml +803 -0
  29. data/xml/rom/53050109.xml +80 -0
  30. data/xml/rom/53600008.xml +25 -0
  31. data/xml/rom/53600009.xml +25 -0
  32. data/xml/rom/53600010.xml +848 -0
  33. data/xml/rom/53610009.xml +25 -0
  34. data/xml/rom/53610010.xml +877 -0
  35. data/xml/rom/53610012.xml +25 -0
  36. data/xml/rom/53610013.xml +886 -0
  37. data/xml/rom/54070007.xml +778 -0
  38. data/xml/rom/54550003.xml +546 -0
  39. data/xml/rom/55580005.xml +1161 -0
  40. data/xml/rom/55580006.xml +25 -0
  41. data/xml/rom/55580106.xml +75 -0
  42. data/xml/rom/55590006.xml +1135 -0
  43. data/xml/rom/55590007.xml +25 -0
  44. data/xml/rom/55590107.xml +69 -0
  45. data/xml/rom/56190002.xml +778 -0
  46. data/xml/rom/56880009.xml +858 -0
  47. data/xml/rom/56900007.xml +566 -0
  48. data/xml/rom/56900009.xml +946 -0
  49. data/xml/rom/56900010.xml +25 -0
  50. data/xml/rom/56920006.xml +546 -0
  51. data/xml/rom/56940007.xml +674 -0
  52. data/xml/rom/56940009.xml +478 -0
  53. data/xml/rom/56940010.xml +25 -0
  54. data/xml/rom/56950006.xml +696 -0
  55. data/xml/rom/57140001.xml +906 -0
  56. data/xml/rom/58020005.xml +732 -0
  57. data/xml/rom/58030005.xml +720 -0
  58. data/xml/rom/58640002.xml +880 -0
  59. metadata +147 -0
@@ -0,0 +1,25 @@
1
+ <!--
2
+ GoldenEvo.com Definition File
3
+ by Michael Golden
4
+
5
+ donations at golden@goldenevo.com
6
+ -->
7
+ <rom>
8
+ <romid>
9
+ <xmlid>53610009</xmlid>
10
+ <internalidaddress>5002a</internalidaddress>
11
+ <internalidhex>53610009</internalidhex>
12
+ <make>Mitsubishi</make>
13
+ <market>EDM</market>
14
+ <model>Lancer</model>
15
+ <submodel>Ralliart</submodel>
16
+ <transmission>SST</transmission>
17
+ <year>2009</year>
18
+ <flashmethod>mitsucan</flashmethod>
19
+ <memmodel>M32186F8</memmodel>
20
+ <checksummodule>mitsucan</checksummodule>
21
+ </romid>
22
+
23
+ <include>53610010</include>
24
+
25
+ </rom>
@@ -0,0 +1,877 @@
1
+ <!--
2
+ GoldenEvo.com Definition File
3
+ by Michael Golden
4
+
5
+ donations at golden@goldenevo.com
6
+ -->
7
+ <rom>
8
+ <romid>
9
+ <xmlid>53610010</xmlid>
10
+ <internalidaddress>5002a</internalidaddress>
11
+ <internalidhex>53610010</internalidhex>
12
+ <make>Mitsubishi</make>
13
+ <market>EDM</market>
14
+ <model>Lancer</model>
15
+ <submodel>Ralliart</submodel>
16
+ <transmission>SST</transmission>
17
+ <year>2009</year>
18
+ <flashmethod>mitsucan</flashmethod>
19
+ <memmodel>M32186F8</memmodel>
20
+ <checksummodule>mitsucan</checksummodule>
21
+ </romid>
22
+
23
+ <scaling name="AcceleratorPedal %" units="%" toexpr="100*x/(1023-204)" frexpr="x/100*(1023-204)" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint16" endian="big"/>
24
+ <scaling name="AcceleratorPedal255 %" units="%" toexpr="100*x/(255-50)" frexpr="x/100*(255-50)" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint16" endian="big"/>
25
+ <scaling name="AFR" units="AFR" toexpr="14.7*128/x" frexpr="14.7*128/x" format="%.1f" min="8" max="20" inc="0.1" storagetype="uint8" endian="big"/>
26
+ <scaling name="AFR16" units="AFR" toexpr="14.7*128/x" frexpr="14.7*128/x" format="%.1f" min="8" max="20" inc="0.1" storagetype="uint16" endian="big"/>
27
+ <scaling name="Baro16" units="bar" toexpr="x/200" frexpr="x*200" format="%.3f" min="0" max="1.1" inc="0.001" storagetype="uint16" endian="big"/>
28
+ <scaling name="BatteryVoltage" units="V" toexpr="x*75/1023" frexpr="x*1023/75" format="%.2f" min="0" max="18.75" inc="0.5" storagetype="uint16" endian="big"/>
29
+ <scaling name="blobbits" storagetype="bloblist" storagebits="1">
30
+ <data name="0" value="00"/>
31
+ <data name="1" value="01"/>
32
+ </scaling>
33
+ <scaling name="BoostErrorPsi" units="psi" toexpr="(x-128)*0.19347/4" frexpr="(x*4/0.19347)+128" format="%.1f" min="-6.1" max="6.1" inc="0.1" storagetype="uint16" endian="big"/>
34
+ <scaling name="Dynamic Boost Axis" units="%" toexpr="x/2" frexpr="x*2" format="-%.1f" min="0" max="100" inc="1" storagetype="int16" endian="big"/>
35
+ <scaling name="DynamicBoost" units="%" toexpr="(x-128)/2" frexpr="x*2+128" format="%.1f" min="-64" max="63.5" inc="0.5" storagetype="uint8" endian="big"/>
36
+ <scaling name="ECU ID" units="units" toexpr="x" frexpr="x" format="%08x" min="0" max="1e+08" inc="1" storagetype="uint32" endian="big"/>
37
+ <scaling name="EngineTorque" units="units" toexpr="x*3" frexpr="x/3" format="%.0f" min="0" max="510" inc="1" storagetype="uint8" endian="big"/>
38
+ <scaling name="Hex16" units="hex" toexpr="x" frexpr="x" format="%04X" min="0" max="65535" inc="1" storagetype="uint16" endian="big"/>
39
+ <scaling name="Hex8" units="hex" toexpr="x" frexpr="x" format="%02X" min="0" max="255" inc="1" storagetype="uint8" endian="big"/>
40
+ <scaling name="IgnitionCompensation" units="x" toexpr="x-128" frexpr="x+128" format="%.0f" min="-128" max="128" inc="1" storagetype="uint8" endian="big"/>
41
+ <scaling name="InjectorLatency" units="ms" toexpr="x*0.015" frexpr="x/0.015" format="%.3f" min="0" max="4" inc="0.015" storagetype="uint8" endian="big"/>
42
+ <scaling name="InjectorScaling" units="cc/min" toexpr="29241/x" frexpr="29241/x" format="%.0f" min="1" max="1000" inc="10" storagetype="uint16" endian="big"/>
43
+ <scaling name="ISCVSteps" units="Steps" toexpr="x" frexpr="x" format="%.0f" min="0" max="255" inc="1" storagetype="uint8" endian="big"/>
44
+ <scaling name="Load" units="Load" toexpr="x*10/32" frexpr="x*32/10" format="%.0f" min="0" max="300" inc="1" storagetype="uint16" endian="big"/>
45
+ <scaling name="Load16" units="Load" toexpr="x*5/8" frexpr="x*8/5" format="%.1f" min="0" max="100" inc="1" storagetype="uint16" endian="big"/>
46
+ <scaling name="Load8" units="Load" toexpr="x*5/8" frexpr="x*8/5" format="%.1f" min="0" max="160" inc="1" storagetype="uint8" endian="big"/>
47
+ <scaling name="LoadBoost" units="%" toexpr="x*5/4" frexpr="x*4/5" format="%.0f" min="0" max="319" inc="1" storagetype="uint8" endian="big"/>
48
+ <scaling name="LoadError" units="load" toexpr="x*5/32-20" frexpr="(x+20)*32/5" format="%.1f" min="-20" max="20" inc="0.5" storagetype="uint16" endian="big"/>
49
+ <scaling name="Loadify" units="%" toexpr="(x*10/512)*10/32" frexpr="(x*32/10)*512/10" format="%.1f" min="0" max="300" inc="1" storagetype="uint16" endian="big"/>
50
+ <scaling name="Min timing" units="degrees" toexpr="x-20" frexpr="x+20" format="%.0f" min="-61" max="61" inc="1" storagetype="int8" endian="big"/>
51
+ <scaling name="MUT32" units="hex" toexpr="x" frexpr="x" format="%06X" min="0" max="1e+08" inc="1" storagetype="uint32" endian="big"/>
52
+ <scaling name="OffsetWGDC" units="%WGDC Change" toexpr="(x-128)/2" frexpr="x*2+128" format="%.1f" min="-64" max="63.5" inc="0.5" storagetype="uint8" endian="big"/>
53
+ <scaling name="Omni4barMAP in kPa" units="Omni4barMAP in kPa" toexpr="((x/4)*1.6151)+3.4779" frexpr="((x-3.4779)/1.6151)*4" format="%.2f" min="0" max="400" inc="0.05" storagetype="uint16" endian="big"/>
54
+ <scaling name="Percent255" units="%" toexpr="x*100/255" frexpr="x*255/100" format="%.1f" min="0" max="100" inc="2" storagetype="uint8" endian="big"/>
55
+ <scaling name="psia16" units="psia" toexpr="x*0.19347" frexpr="x/0.19347" format="%.1f" min="0" max="49.5" inc="0.1" storagetype="uint16" endian="big"/>
56
+ <scaling name="psia8" units="psia" toexpr="x*0.19347" frexpr="x/0.19347" format="%.1f" min="0" max="49.5" inc="0.1" storagetype="uint8" endian="big"/>
57
+ <scaling name="RPM" units="RPM" toexpr="x*1000/256" frexpr="x*256/1000" format="%.0f" min="0" max="11000" inc="50" storagetype="uint16" endian="big"/>
58
+ <scaling name="RPMLimit" units="RPM" toexpr="7500000/x" frexpr="7500000/x" format="%.0f" min="0" max="9000" inc="60" storagetype="uint16" endian="big"/>
59
+ <scaling name="RPMPerMPH" units="RPM/MPH" toexpr="x/22.6" frexpr="22.6*x" format="%.0f" min="0" max="3000" inc="5" storagetype="uint16" endian="big"/>
60
+ <scaling name="RPMStatLimit" units="units" toexpr="x*31.25" frexpr="x/31.25" format="%.0f" min="0" max="9000" inc="31.25" storagetype="uint16" endian="big"/>
61
+ <scaling name="RPMUnknown" units="RPM" toexpr="x*31.25/8" frexpr="x*8/31.25" format="%.0f" min="0" max="11000" inc="50" storagetype="uint16" endian="big"/>
62
+ <scaling name="StockXMAP in kPa" units="StockXMAP in kPa" toexpr="((x*2556/3800)+0.5)/2" frexpr="((x * 2)-0.5)*3800/2556" format="%.2f" min="0" max="350" inc="0.05" storagetype="uint16" endian="big"/>
63
+ <scaling name="StockXMAP in psig" units="StockXMAP in psig" toexpr="((x/4)*0.19347)-14.5" frexpr="((x+14.5)/0.19347)*4" format="%.2f" min="-15" max="35" inc="0.05" storagetype="uint16" endian="big"/>
64
+ <scaling name="Temp" units="Fahrenheit" toexpr="1.8*x-40" frexpr="(x+40)/1.8" format="%.0f" min="-40" max="350" inc="1" storagetype="uint16" endian="big"/>
65
+ <scaling name="TempC" units="Celsius" toexpr="x-40" frexpr="x+40" format="%.0f" min="-40" max="215" inc="1" storagetype="uint16" endian="big"/>
66
+ <scaling name="Throttle %" units="%" toexpr="x*100/255" frexpr="x*255/100" format="%.1f" min="0" max="100" inc="2" storagetype="uint16" endian="big"/>
67
+ <scaling name="Throttle Cap" units="%" toexpr="x/1024*100" frexpr="x/100*1024" format="%.1f" min="0" max="100" inc=".5" storagetype="uint16" endian="big"/>
68
+ <scaling name="Throttle Opening" units="%" toexpr="x/3277*100" frexpr="x/100*3277" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint16" endian="big"/>
69
+ <scaling name="ThrottleMAINorSUBInvertedOpening %" units="%" toexpr="100*(x-26)/(204)" frexpr="(x+26)/100*(204)" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint16" endian="big"/>
70
+ <scaling name="Throttle_Main - Stored Minimum Throttle %" units="%" toexpr="(x+(90/4))*100/255" frexpr="x*255/100-(90/4)" format="%.1f" min="0" max="100" inc="2" storagetype="uint16" endian="big"/>
71
+ <scaling name="Time" units="ms" toexpr="x*25" frexpr="x/25" format="%.0f" min="0" max="1.63838e+06" inc="25" storagetype="uint16" endian="big"/>
72
+ <scaling name="TimeInjCranking" units="ms" toexpr="x*0.005" frexpr="x/0.005" format="%.1f" min="0" max="500" inc="1" storagetype="uint16" endian="big"/>
73
+ <scaling name="Timing" units="degrees" toexpr="x" frexpr="x" format="%.0f" min="-61" max="61" inc="1" storagetype="int8" endian="big"/>
74
+ <scaling name="Torque Calculation Axis" units="NM" toexpr="x*2.56" frexpr="x/2.56" format="%.1f" min="0" max="765" inc="5" storagetype="uint16" endian="big"/>
75
+ <scaling name="Torque Calculation FtLbs" units="FtLbs" toexpr="x*3" frexpr="x/3" format="%.1f" min="0" max="800" inc="2.5" storagetype="uint8" endian="big"/>
76
+ <scaling name="uint16" units="units" toexpr="x" frexpr="x" format="%.0f" min="0" max="65535" inc="1" storagetype="uint16" endian="big"/>
77
+ <scaling name="uint8" units="units" toexpr="x" frexpr="x" format="%.0f" min="0" max="255" inc="1" storagetype="uint8" endian="big"/>
78
+ <scaling name="ValveTimingExhaust" units="degrees" toexpr="80-x*0.625" frexpr="(80-x)/0.625" format="%.1f" min="-35" max="0" inc="1" storagetype="uint8" endian="big"/>
79
+ <scaling name="ValveTimingIntake" units="degrees" toexpr="80-x*0.625" frexpr="(80-x)/0.625" format="%.1f" min="10" max="35" inc="1" storagetype="uint8" endian="big"/>
80
+ <scaling name="VehicleSpeed" units="km/h" toexpr="x*2" frexpr="x/2" format="%.0f" min="0" max="510" inc="1" storagetype="uint16" endian="big"/>
81
+ <scaling name="VehicleSpeedFreq" units="km/h" toexpr="x*0.25" frexpr="x/0.25" format="%.1f" min="0" max="64" inc="0.2" storagetype="uint16" endian="big"/>
82
+ <scaling name="VoltsADC1023" units="Volts" toexpr="x*5/1023" frexpr="x*1023/5" format="%.2f" min="0" max="5" inc="0.05" storagetype="uint16" endian="big"/>
83
+ <scaling name="WGDuty" units="%" toexpr="x/2" frexpr="x*2" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint8" endian="big"/>
84
+ <scaling name="WGDuty16" units="%" toexpr="x/2" frexpr="x*2" format="%.1f" min="0" max="100" inc="0.5" storagetype="uint16" endian="big"/>
85
+
86
+ <table name="Mode 23 - IFMode 0x05 -> 0x23 #1" address="574e6" category="Misc" type="1D" scaling="Hex8"/>
87
+
88
+ <table name="Mode 23 - IFMode 0x05 -> 0x23 #2" address="8a919" category="Misc" type="1D" scaling="Hex8"/>
89
+
90
+ <table name="Mode 23 - DoMode 0x42 -> 0x52" address="8a91e" category="Misc" type="1D" scaling="Hex16"/>
91
+
92
+ <table name="ASC OFF, SST OFF Fix 0x00E9 -> 0x0100" address="53b0a" category="Misc" type="1D" scaling="Hex16"/>
93
+
94
+ <table name="DTC P1238 Disable 0x0384 -> 0xFFFF Mass airflow sensor plausibility (Torque Monitor)" address="63210" category="Misc" type="1D" scaling="Hex16"/>
95
+
96
+ <table name="DTC P1241 Disable 0x03E8 -> 0xFFFF Torque monitor" address="63206" category="Misc" type="1D" scaling="Hex16"/>
97
+
98
+ <table name="DTC P1235 Disable 0x0026 -> 0xFFFF Mass airflow sensor plausibility" address="549d4" category="Misc" type="1D" scaling="Hex16"/>
99
+
100
+ <table name="DTC P1233 Disable 0x0028 -> 0xFFFF Throttle position sensor (main) plausibility" address="549d0" category="Misc" type="1D" scaling="Hex16"/>
101
+
102
+ <table name="DTC P1234 Disable 0x0028 -> 0xFFFF Throttle position sensor (sub) plausibility" address="549d2" category="Misc" type="1D" scaling="Hex16"/>
103
+
104
+ <table name="ECU ID" address="5002a" category="Misc" type="1D" scaling="ECU ID"/>
105
+
106
+ <table name="High Octane Timing Map" address="55957" category="Timing" type="3D" swapxy="true" scaling="Timing">
107
+ <table name="Load" address="60fd6" type="X Axis" elements="22" scaling="Load"/>
108
+ <table name="RPM" address="60fa2" type="Y Axis" elements="23" scaling="RPM"/>
109
+ </table>
110
+
111
+ <table name="Low Octane Timing Map" address="55b59" category="Timing" type="3D" swapxy="true" scaling="Timing">
112
+ <table name="Load" address="60fd6" type="X Axis" elements="22" scaling="Load"/>
113
+ <table name="RPM" address="60fa2" type="Y Axis" elements="23" scaling="RPM"/>
114
+ </table>
115
+
116
+ <table name="Upper Bound Ignition Timing" address="607d9" category="Timing" type="3D" level="2" swapxy="true" scaling="Timing">
117
+ <table name="Load" address="60fd6" type="X Axis" elements="22" scaling="Load"/>
118
+ <table name="RPM" address="60fa2" type="Y Axis" elements="23" scaling="RPM"/>
119
+ </table>
120
+
121
+ <table name="Lower Bound Ignition Timing" address="50795" category="Timing" type="3D" level="2" swapxy="true" scaling="Min timing">
122
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
123
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
124
+ </table>
125
+
126
+ <table name="Lower Bound Ignition Timing Adder vs CTS" address="52b8e" category="Timing" type="2D" level="2" scaling="Timing">
127
+ <table name="Coolant Temp" address="61276" type="Y Axis" elements="8" scaling="Temp"/>
128
+ </table>
129
+
130
+ <table name="Ignition Warmup Retard" address="5b8f1" category="Timing" type="3D" swapxy="true" scaling="Timing">
131
+ <table name="Load" address="60fd6" type="X Axis" elements="22" scaling="Load"/>
132
+ <table name="RPM" address="60fa2" type="Y Axis" elements="23" scaling="RPM"/>
133
+ </table>
134
+
135
+ <table name="EGR Timing Advance" address="57301" category="Timing" type="3D" swapxy="true" scaling="Timing">
136
+ <table name="Load" address="61580" type="X Axis" elements="9" scaling="Load"/>
137
+ <table name="RPM" address="61566" type="Y Axis" elements="10" scaling="RPM"/>
138
+ </table>
139
+
140
+ <table name="Timing Reduction vs Load/RPM" address="5063d" category="Timing" type="3D" level="2" swapxy="true" scaling="Timing">
141
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
142
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
143
+ </table>
144
+
145
+ <table name="IAT Ignition Advance Compensation" address="56184" category="Timing" type="2D" scaling="IgnitionCompensation">
146
+ <table name="IAT" address="61156" type="Y Axis" elements="7" scaling="Temp"/>
147
+ </table>
148
+
149
+ <table name="IAT to switch Load from Baro+Temp to Baro" address="53544" category="Timing" type="1D" level="2" scaling="Temp"/>
150
+
151
+ <table name="Barometric Ignition Advance Compensation" address="56190" category="Timing" type="2D" scaling="IgnitionCompensation">
152
+ <table name="Baro" address="60ede" type="Y Axis" elements="5" scaling="Baro16"/>
153
+ </table>
154
+
155
+ <table name="MIVEC Intake Normal Coolant Temp" address="5db69" category="Timing" type="3D" swapxy="true" scaling="ValveTimingIntake">
156
+ <table name="Load" address="615e4" type="X Axis" elements="21" scaling="Load"/>
157
+ <table name="RPM" address="61614" type="Y Axis" elements="24" scaling="RPM"/>
158
+ </table>
159
+
160
+ <table name="MIVEC Intake Low Coolant Temp" address="5dd69" category="Timing" type="3D" level="2" swapxy="true" scaling="ValveTimingIntake">
161
+ <table name="Load" address="615e4" type="X Axis" elements="21" scaling="Load"/>
162
+ <table name="RPM" address="61614" type="Y Axis" elements="24" scaling="RPM"/>
163
+ </table>
164
+
165
+ <table name="MIVEC Exhaust Normal Coolant Temp" address="5df69" category="Timing" type="3D" swapxy="true" scaling="ValveTimingExhaust">
166
+ <table name="Load" address="615e4" type="X Axis" elements="21" scaling="Load"/>
167
+ <table name="RPM" address="61614" type="Y Axis" elements="24" scaling="RPM"/>
168
+ </table>
169
+
170
+ <table name="MIVEC Exhaust Low Coolant Temp" address="5e169" category="Timing" type="3D" level="2" swapxy="true" scaling="ValveTimingExhaust">
171
+ <table name="Load" address="615e4" type="X Axis" elements="21" scaling="Load"/>
172
+ <table name="RPM" address="61614" type="Y Axis" elements="24" scaling="RPM"/>
173
+ </table>
174
+
175
+ <table name="High Octane Fuel Map" address="55027" category="Fuel" type="3D" swapxy="true" scaling="AFR">
176
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
177
+ <table name="RPM" address="60f36" type="Y Axis" elements="16" scaling="RPM"/>
178
+ </table>
179
+
180
+ <table name="Low Octane Fuel Map" address="552d7" category="Fuel" type="3D" swapxy="true" scaling="AFR">
181
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
182
+ <table name="RPM" address="60f36" type="Y Axis" elements="16" scaling="RPM"/>
183
+ </table>
184
+
185
+ <table name="Cylinder Fuel Trim #1" address="57df9" category="Fuel" type="3D" level="2" swapxy="true" scaling="AFR">
186
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
187
+ <table name="RPM" address="61a32" type="Y Axis" elements="23" scaling="RPM"/>
188
+ </table>
189
+
190
+ <table name="Cylinder Fuel Trim #2" address="57fe3" category="Fuel" type="3D" level="2" swapxy="true" scaling="AFR">
191
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
192
+ <table name="RPM" address="61a32" type="Y Axis" elements="23" scaling="RPM"/>
193
+ </table>
194
+
195
+ <table name="Cylinder Fuel Trim #3" address="581cd" category="Fuel" type="3D" level="2" swapxy="true" scaling="AFR">
196
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
197
+ <table name="RPM" address="61a32" type="Y Axis" elements="23" scaling="RPM"/>
198
+ </table>
199
+
200
+ <table name="Cylinder Fuel Trim #4" address="583b7" category="Fuel" type="3D" level="2" swapxy="true" scaling="AFR">
201
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
202
+ <table name="RPM" address="61a32" type="Y Axis" elements="23" scaling="RPM"/>
203
+ </table>
204
+
205
+ <table name="Max Lean Oct Avg AFR vs Load" address="57a2e" category="Fuel" type="2D" level="2" scaling="AFR">
206
+ <table name="Unknown" address="617ee" type="Y Axis" elements="11" scaling="Load16"/>
207
+ </table>
208
+
209
+ <table name="Max Rich AFR Clip vs Coolant Temp" address="5a1dc" category="Fuel" type="2D" level="2" scaling="AFR">
210
+ <table name="Coolant Temperature" address="5d2dc" type="Y Axis" elements="9" scaling="Temp"/>
211
+ </table>
212
+
213
+ <table name="Octane Related" address="5a8b4" category="Fuel" type="2D" level="2" scaling="uint8">
214
+ <table name="Coolant Temp" address="6103a" type="Y Axis" elements="8" scaling="Temp"/>
215
+ </table>
216
+
217
+ <table name="Fuel Injector Scaling" address="536cc" category="Fuel" type="1D" scaling="InjectorScaling"/>
218
+
219
+ <table name="Injector Battery Voltage Latency Compensation" address="556d0" category="Fuel" type="2D" scaling="InjectorLatency">
220
+ <table name="Battery Voltage" address="60eb2" type="Y Axis" elements="7" scaling="BatteryVoltage"/>
221
+ </table>
222
+
223
+ <table name="Cranking Enrichment IPW Adder" address="574e6" category="Fuel" type="2D" scaling="TimeInjCranking">
224
+ <table name="Coolant Temperature" address="6107e" type="Y Axis" elements="9" scaling="Temp"/>
225
+ </table>
226
+
227
+ <table name="Injector Base Latency" address="53000" category="Fuel" type="1D" scaling="InjectorLatency"/>
228
+
229
+ <table name="Min Load for Fuel Pump High Voltage" address="58fde" category="Fuel" type="2D" scaling="Load8">
230
+ <table name="Engine Speed" address="60d7e" type="Y Axis" elements="16" scaling="RPM"/>
231
+ </table>
232
+
233
+ <table name="Open Loop Load High Octane #1" address="57514" category="Fuel" type="2D" scaling="Load8">
234
+ <table name="RPM" address="60dc2" type="Y Axis" elements="20" scaling="RPM"/>
235
+ </table>
236
+
237
+ <table name="Open Loop Load Low Octane #1" address="574fc" category="Fuel" type="2D" scaling="Load8">
238
+ <table name="RPM" address="60dc2" type="Y Axis" elements="20" scaling="RPM"/>
239
+ </table>
240
+
241
+ <table name="Open Loop Load High Octane #2" address="555da" category="Fuel" type="2D" scaling="Load8">
242
+ <table name="RPM" address="60dc2" type="Y Axis" elements="20" scaling="RPM"/>
243
+ </table>
244
+
245
+ <table name="Open Loop Load Low Octane #2" address="555c2" category="Fuel" type="2D" scaling="Load8">
246
+ <table name="RPM" address="60dc2" type="Y Axis" elements="20" scaling="RPM"/>
247
+ </table>
248
+
249
+ <table name="MAF Scaling Part 1" address="57586" category="Fuel" type="2D" level="2" scaling="uint16">
250
+ <table name="Volts" address="6164a" type="Y Axis" elements="44" scaling="VoltsADC1023"/>
251
+ </table>
252
+
253
+ <table name="MAF Scaling Part 2" address="575de" category="Fuel" type="2D" level="2" scaling="uint16">
254
+ <table name="Volts" address="616a2" type="Y Axis" elements="44" scaling="VoltsADC1023"/>
255
+ </table>
256
+
257
+ <table name="MAF Scaling Part 3" address="57636" category="Fuel" type="2D" level="2" scaling="uint16">
258
+ <table name="Volts" address="616fa" type="Y Axis" elements="42" scaling="VoltsADC1023"/>
259
+ </table>
260
+
261
+ <table name="MAP based Load Calc #1 - Hot/Interpolated" address="604a0" category="Fuel" type="3D" level="2" swapxy="true" scaling="Loadify">
262
+ <table name="MAP" address="62a90" type="X Axis" elements="19" scaling="StockXMAP in psig"/>
263
+ <table name="RPM" address="62a64" type="Y Axis" elements="19" scaling="RPM"/>
264
+ </table>
265
+
266
+ <table name="MAP based Load Calc #2 - Cold/Interpolated" address="601c4" category="Fuel" type="3D" level="2" swapxy="true" scaling="Loadify">
267
+ <table name="MAP" address="62a90" type="X Axis" elements="19" scaling="StockXMAP in kPa"/>
268
+ <table name="RPM" address="62a64" type="Y Axis" elements="19" scaling="RPM"/>
269
+ </table>
270
+
271
+ <table name="MAP based Load Calc #3" address="5fee8" category="Fuel" type="3D" level="2" swapxy="true" scaling="Loadify">
272
+ <table name="MAP" address="62a90" type="X Axis" elements="19" scaling="Omni4barMAP in kPa"/>
273
+ <table name="RPM" address="62a64" type="Y Axis" elements="19" scaling="RPM"/>
274
+ </table>
275
+
276
+ <table name="Atmospheric Boost" address="53484" category="Direct Boost" type="1D" scaling="psia16"/>
277
+
278
+ <table name="Boost Target #1A (High Gear Range)" address="58e8d" category="Direct Boost" type="3D" swapxy="true" scaling="psia8">
279
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
280
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
281
+ </table>
282
+
283
+ <table name="Boost Target #1B (High Gear Range)" address="58f37" category="Direct Boost" type="3D" swapxy="true" scaling="psia8">
284
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
285
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
286
+ </table>
287
+
288
+ <table name="Boost Target #2 (Low Gear Range)" address="5743d" category="Direct Boost" type="3D" swapxy="true" scaling="psia8">
289
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
290
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
291
+ </table>
292
+
293
+ <table name="Target Boost Error Correction" address="58d20" category="Direct Boost" type="2D" scaling="OffsetWGDC">
294
+ <table name="Boost Error" address="6261a" type="Y Axis" elements="17" scaling="BoostErrorPsi"/>
295
+ </table>
296
+
297
+ <table name="Variable for Boost Control 0xC774 -> 0xC71A" address="9f516" category="Direct Boost" type="1D" scaling="Hex16"/>
298
+
299
+ <table name="SHLR->SHLR2 0x5101 -> 0x5102" address="9f518" category="Direct Boost" type="1D" scaling="Hex16"/>
300
+
301
+ <table name="Boost Error RAM Address 0xC590 -> 0xC58E (is 0x80858E for logging)" address="9f53e" category="Direct Boost" type="1D" scaling="Hex16"/>
302
+
303
+ <table name="Boost Error RAM Address in Load Error Table 0xC590 -> 0xC58E" address="62616" category="Direct Boost" type="1D" scaling="Hex16"/>
304
+
305
+ <table name="OBTR (Over-Boost Timing Retard)" address="58cbc" category="Direct Boost" type="2D" level="3" swapxy="true" scaling="Timing">
306
+ <table name="Load Error" address="62642" type="Y Axis" elements="9" scaling="BoostErrorPsi"/>
307
+ </table>
308
+
309
+ <table name="OBTR Variable for Boost Control 0xC774 -> 0xC71A" address="21d72" category="Direct Boost" type="1D" level="3" scaling="Hex16"/>
310
+
311
+ <table name="OBTR SHLR->SHLR2 0x5201 -> 0x5202" address="21d74" category="Direct Boost" type="1D" level="3" scaling="Hex16"/>
312
+
313
+ <table name="OBTR Boost Error RAM Address 0xC590 -> 0xC58E" address="21d8a" category="Direct Boost" type="1D" level="3" scaling="Hex16"/>
314
+
315
+ <table name="OBTR Boost Error RAM Address in Load Error Table 0xC590 -> 0xC58E" address="6263e" category="Direct Boost" type="1D" level="3" scaling="Hex16"/>
316
+
317
+ <table name="Boost Control Load Offset" address="53484" category="Load Boost" type="1D" scaling="Load16"/>
318
+
319
+ <table name="Boost Target Engine Load #1A (High Gear Range)" address="58e8d" category="Load Boost" type="3D" swapxy="true" scaling="Load8">
320
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
321
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
322
+ </table>
323
+
324
+ <table name="Boost Target Engine Load #1B (High Gear Range)" address="58f37" category="Load Boost" type="3D" swapxy="true" scaling="Load8">
325
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
326
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
327
+ </table>
328
+
329
+ <table name="Boost Target Engine Load #2 (Low Gear Range)" address="5743d" category="Load Boost" type="3D" swapxy="true" scaling="Load8">
330
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
331
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
332
+ </table>
333
+
334
+ <table name="Reactive Solenoid Turbo Boost Error Correction" address="58d20" category="Load Boost" type="2D" scaling="DynamicBoost">
335
+ <table name="Load Error" address="6261a" type="Y Axis" elements="17" scaling="LoadError"/>
336
+ </table>
337
+
338
+ <table name="OBTR (Over-Boost Timing Retard) Load" address="58cbc" category="Load Boost" type="2D" level="3" swapxy="true" scaling="Timing">
339
+ <table name="Load Error" address="62642" type="Y Axis" elements="9" scaling="LoadError"/>
340
+ </table>
341
+
342
+ <table name="Boost Cut Delay Timer" address="53068" category="Turbo" type="1D" scaling="Time"/>
343
+
344
+ <table name="Boost Limit" address="555b4" category="Turbo" type="2D" scaling="LoadBoost">
345
+ <table name="RPM" address="615ba" type="Y Axis" elements="9" scaling="RPM"/>
346
+ </table>
347
+
348
+ <table name="Boost Control RPM Per MPH Xover (Gear Based)" address="5468a" category="Turbo" type="1D" scaling="RPMPerMPH"/>
349
+
350
+ <table name="Reactive Solenoid Base WGDC Map #1A (High Gear Range)" address="58d39" category="Turbo" type="3D" swapxy="true" scaling="WGDuty">
351
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
352
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
353
+ </table>
354
+
355
+ <table name="Reactive Solenoid Base WGDC Map #1B (High Gear Range)" address="58de3" category="Turbo" type="3D" swapxy="true" scaling="WGDuty">
356
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
357
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
358
+ </table>
359
+
360
+ <table name="Reactive Solenoid Base WGDC Map #2 (Low Gear Range)" address="57393" category="Turbo" type="3D" swapxy="true" scaling="WGDuty">
361
+ <table name="Throttle" address="62672" type="X Axis" elements="9" scaling="Throttle_Main - Stored Minimum Throttle %"/>
362
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
363
+ </table>
364
+
365
+ <table name="Reactive Solenoid Max WGDC vs CTS" address="5a254" category="Turbo" type="2D" scaling="WGDuty">
366
+ <table name="Coolant Temp" address="5d33a" type="Y Axis" elements="8" scaling="Temp"/>
367
+ </table>
368
+
369
+ <table name="Reactive Solenoid WGDC Correction Interval (High Gear Range)" address="5346a" category="Turbo" type="1D" scaling="uint16"/>
370
+
371
+ <table name="Reactive Solenoid WGDC Correction Interval (Low Gear Range)" address="5469a" category="Turbo" type="1D" scaling="uint16"/>
372
+
373
+ <table name="Reactive Solenoid Max Total Upward WGDC Correction vs TPS" address="58d12" category="Turbo" type="2D" scaling="OffsetWGDC">
374
+ <table name="TPS" address="6265a" type="Y Axis" elements="9" scaling="Throttle %"/>
375
+ </table>
376
+
377
+ <table name="Reactive Solenoid Max Total Downward WGDC Correction" address="534ae" category="Turbo" type="1D" scaling="OffsetWGDC"/>
378
+
379
+ <table name="Passive Solenoid Base WGDC Map #1A (High Gear Range)" address="5a212" category="Turbo" type="2D" scaling="WGDuty">
380
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
381
+ </table>
382
+
383
+ <table name="Passive Solenoid Base WGDC Map #1B (High Gear Range)" address="5a228" category="Turbo" type="2D" scaling="WGDuty">
384
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
385
+ </table>
386
+
387
+ <table name="Passive Solenoid Base WGDC Map #2 (Low Gear Range)" address="5a23e" category="Turbo" type="2D" scaling="WGDuty">
388
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
389
+ </table>
390
+
391
+ <table name="Hysteresis" address="5312a" category="Lean Spool" type="1D" scaling="Load16"/>
392
+
393
+ <table name="Min Temp" address="5312c" category="Lean Spool" type="1D" scaling="Temp"/>
394
+
395
+ <table name="Start RPM" address="5312e" category="Lean Spool" type="1D" scaling="RPMStatLimit"/>
396
+
397
+ <table name="AFR Enable" address="53130" category="Lean Spool" type="1D" scaling="AFR16"/>
398
+
399
+ <table name="Stop RPM" address="53132" category="Lean Spool" type="1D" scaling="RPMStatLimit"/>
400
+
401
+ <table name="AFR Clip" address="53134" category="Lean Spool" type="1D" scaling="AFR16"/>
402
+
403
+ <table name="LeanSpool AFR v FuelMap AFR" address="55900" category="Lean Spool" type="2D" scaling="AFR">
404
+ <table name="Base Fuel Map AFR" address="60f22" type="Y Axis" elements="7" scaling="AFR16"/>
405
+ </table>
406
+
407
+ <table name="Throttle Map #1" address="50b6a" category="Intake" type="3D" swapxy="true" scaling="Throttle Opening">
408
+ <table name="Load" address="61430" type="X Axis" elements="49" scaling="Load"/>
409
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
410
+ </table>
411
+
412
+ <table name="Throttle Map #2" address="51194" category="Intake" type="3D" swapxy="true" scaling="Throttle Opening">
413
+ <table name="Load" address="61430" type="X Axis" elements="49" scaling="Load"/>
414
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
415
+ </table>
416
+
417
+ <table name="Throttle Map #3" address="517be" category="Intake" type="3D" swapxy="true" scaling="Throttle Opening">
418
+ <table name="Load" address="61430" type="X Axis" elements="49" scaling="Load"/>
419
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
420
+ </table>
421
+
422
+ <table name="Throttle Map #4" address="51de8" category="Intake" type="3D" swapxy="true" scaling="Throttle Opening">
423
+ <table name="Load" address="61430" type="X Axis" elements="49" scaling="Load"/>
424
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
425
+ </table>
426
+
427
+ <table name="Throttle Map #5" address="52412" category="Intake" type="3D" swapxy="true" scaling="Throttle Opening">
428
+ <table name="Load" address="61430" type="X Axis" elements="49" scaling="Load"/>
429
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
430
+ </table>
431
+
432
+ <table name="Throttle Conditional Switch" address="5496e" category="Intake" type="1D" scaling="RPMStatLimit"/>
433
+
434
+ <table name="Rev Limiter" address="5305e" category="Limits" type="2D" scaling="RPMLimit">
435
+ <table type="Static Y Axis" elements="2">
436
+ <data>Rev Limiter ON</data>
437
+ <data>Rev Limiter OFF</data>
438
+ </table>
439
+ </table>
440
+
441
+ <table name="Stationary Rev Limiter" address="54690" category="Limits" type="1D" scaling="RPMStatLimit"/>
442
+
443
+ <table name="Stationary Rev Limit Cross Under Max Speed Enable Delay" address="54692" category="Limits" type="1D" scaling="Time"/>
444
+
445
+ <table name="Max Speed for Stationary Rev Limit" address="5468e" category="Limits" type="1D" scaling="VehicleSpeedFreq"/>
446
+
447
+ <table name="Speed Limiter #1" address="53062" category="Limits" type="2D" scaling="VehicleSpeed">
448
+ <table name="X" type="Static Y Axis" elements="2">
449
+ <data>Limiter ON</data>
450
+ <data>Limiter OFF</data>
451
+ </table>
452
+ </table>
453
+
454
+ <table name="Airflow Check #1" address="5e995" category="Limits" type="3D" swapxy="true" scaling="EngineTorque">
455
+ <table name="Throttle Main or SUB Inverted Opening" address="624f0" type="X Axis" elements="14" scaling="ThrottleMAINorSUBInvertedOpening %"/>
456
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
457
+ </table>
458
+
459
+ <table name="Airflow Check #2" address="5ea8b" category="Limits" type="3D" swapxy="true" scaling="EngineTorque">
460
+ <table name="Throttle Main or SUB Inverted Opening" address="624f0" type="X Axis" elements="14" scaling="ThrottleMAINorSUBInvertedOpening %"/>
461
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
462
+ </table>
463
+
464
+ <table name="Airflow Check #3" address="5eb81" category="Limits" type="3D" swapxy="true" scaling="EngineTorque">
465
+ <table name="Throttle Main or SUB Inverted Opening" address="624f0" type="X Axis" elements="14" scaling="ThrottleMAINorSUBInvertedOpening %"/>
466
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
467
+ </table>
468
+
469
+ <table name="Airflow Check #4" address="5ec8b" category="Limits" type="3D" swapxy="true" scaling="uint8">
470
+ <table name="TPS-Related" address="62538" type="X Axis" elements="6" scaling="Throttle %"/>
471
+ <table name="RPM" address="62512" type="Y Axis" elements="16" scaling="RPM"/>
472
+ </table>
473
+
474
+ <table name="Airflow Check #1 (Old Style)" address="5e995" category="Limits" type="3D" swapxy="true" scaling="uint8">
475
+ <table name="TPS-Related" address="624f0" type="X Axis" elements="14" scaling="Throttle %"/>
476
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
477
+ </table>
478
+
479
+ <table name="Airflow Check #2 (Old Style)" address="5ea8b" category="Limits" type="3D" swapxy="true" scaling="uint8">
480
+ <table name="TPS-Related" address="624f0" type="X Axis" elements="14" scaling="Throttle %"/>
481
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
482
+ </table>
483
+
484
+ <table name="Airflow Check #3 (Old Style)" address="5eb81" category="Limits" type="3D" swapxy="true" scaling="uint8">
485
+ <table name="TPS-Related" address="624f0" type="X Axis" elements="14" scaling="Throttle %"/>
486
+ <table name="RPM" address="624c8" type="Y Axis" elements="17" scaling="RPM"/>
487
+ </table>
488
+
489
+ <table name="Torque Limiter #1" address="6386d" category="Limits" type="3D" swapxy="true" scaling="uint8">
490
+ <table name="TPS-Related" address="63dce" type="X Axis" elements="14" scaling="Throttle %"/>
491
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
492
+ </table>
493
+
494
+ <table name="Torque Limiter #2" address="63963" category="Limits" type="3D" swapxy="true" scaling="uint8">
495
+ <table name="TPS-Related" address="63dce" type="X Axis" elements="14" scaling="Throttle %"/>
496
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
497
+ </table>
498
+
499
+ <table name="Torque Limiter #3" address="63a59" category="Limits" type="3D" swapxy="true" scaling="uint8">
500
+ <table name="TPS-Related" address="63dce" type="X Axis" elements="14" scaling="Throttle %"/>
501
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
502
+ </table>
503
+
504
+ <table name="Torque Limiter #4" address="63b4f" category="Limits" type="3D" swapxy="true" scaling="uint8">
505
+ <table name="TPS-Related" address="63e8e" type="X Axis" elements="6" scaling="Throttle %"/>
506
+ <table name="RPM" address="63df0" type="Y Axis" elements="16" scaling="RPM"/>
507
+ </table>
508
+
509
+ <table name="1st gear TPS limiter (Drive)" address="60778" category="SST" type="2D" level="2" scaling="Throttle Cap">
510
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
511
+ </table>
512
+
513
+ <table name="1st gear TPS limiter (Reverse)" address="607a2" category="SST" type="2D" level="2" scaling="Throttle Cap">
514
+ <table name="RPM" address="625f0" type="Y Axis" elements="18" scaling="RPM"/>
515
+ </table>
516
+
517
+ <table name="SST Limit Temperature" address="54abe" category="SST" type="2D" level="3" scaling="Temp">
518
+ <table name="x" type="Static Y Axis" elements="2">
519
+ <data>Limp Mode ON</data>
520
+ <data>Limp Mode OFF</data>
521
+ </table>
522
+ </table>
523
+
524
+ <table name="SST Upshift - Lower Bound Fueling" address="57a65" category="SST" type="3D" level="3" swapxy="true" scaling="AFR">
525
+ <table name="Load" address="60f5c" type="X Axis" elements="21" scaling="Load"/>
526
+ <table name="RPM" address="60f36" type="Y Axis" elements="16" scaling="RPM"/>
527
+ </table>
528
+
529
+ <table name="SST Upshift - Lower Bound Timing" address="50795" category="SST" type="3D" level="3" swapxy="true" scaling="Min timing">
530
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
531
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
532
+ </table>
533
+
534
+ <table name="SST Upshift - Lower Bound Timing Retard Max" address="52a39" category="SST" type="3D" level="3" swapxy="true" scaling="Timing">
535
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
536
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
537
+ </table>
538
+
539
+ <table name="SST Upshift - Lower Bound Timing Reduction vs Load/RPM" address="5063d" category="SST" type="3D" level="3" swapxy="true" scaling="Timing">
540
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
541
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
542
+ </table>
543
+
544
+ <table name="SST Clutch Pressure Ramp Up - Map A" address="5914d" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
545
+ <table name="Load" address="613d8" type="X Axis" elements="21" scaling="Throttle %"/>
546
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
547
+ </table>
548
+
549
+ <table name="SST Clutch Pressure Ramp Up - Map B" address="6328d" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
550
+ <table name="Load" address="63d28" type="X Axis" elements="21" scaling="Throttle %"/>
551
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
552
+ </table>
553
+
554
+ <table name="SST Clutch Pressure Ramp Up - Map C" address="64011" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
555
+ <table name="Load" address="65190" type="X Axis" elements="21" scaling="Throttle %"/>
556
+ <table name="RPM" address="6516a" type="Y Axis" elements="16" scaling="RPM"/>
557
+ </table>
558
+
559
+ <table name="SST Clutch Pressure - Unknown" address="50415" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
560
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Throttle %"/>
561
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
562
+ </table>
563
+
564
+ <table name="SST Clutch Pressure Ramp Up - Reduction vs Octane" address="58ff5" category="SST" type="3D" level="3" swapxy="true" scaling="EngineTorque">
565
+ <table name="Load" address="613a8" type="X Axis" elements="21" scaling="Load"/>
566
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
567
+ </table>
568
+
569
+ <table name="SST Clutch Pressure Ramp Up - Adjust Offset 2D" address="5ecf0" category="SST" type="2D" level="3" scaling="EngineTorque">
570
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
571
+ </table>
572
+
573
+ <table name="SST Clutch Pressure Ramp Up - Reduction vs CTS" address="59814" category="SST" type="2D" level="3" scaling="EngineTorque">
574
+ <table name="Coolant Temp" address="61276" type="Y Axis" elements="8" scaling="Temp"/>
575
+ </table>
576
+
577
+ <table name="SST Clutch Pressure Ramp Up - Reduction vs Alternator" address="50595" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
578
+ <table name="Unknown" address="61498" type="X Axis" elements="10" scaling="uint16"/>
579
+ <table name="RPM" address="61382" type="Y Axis" elements="16" scaling="RPMUnknown"/>
580
+ </table>
581
+
582
+ <table name="SST Throttle Requested Torque Map #1 - Liftoff" address="592a5" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
583
+ <table name="Throttle" address="61408" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
584
+ <table name="RPM" address="61382" type="Y Axis" elements="16" scaling="RPM"/>
585
+ </table>
586
+
587
+ <table name="SST Throttle Requested Torque Map #2 - Cold/Interpolated" address="593bd" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
588
+ <table name="Throttle" address="61408" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
589
+ <table name="RPM" address="61382" type="Y Axis" elements="16" scaling="RPM"/>
590
+ </table>
591
+
592
+ <table name="SST Throttle Requested Torque Map #3 - Hot/Interpolated" address="594d5" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
593
+ <table name="Throttle" address="61408" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
594
+ <table name="RPM" address="61382" type="Y Axis" elements="16" scaling="RPM"/>
595
+ </table>
596
+
597
+ <table name="SST Throttle Requested Torque Subtractor Map" address="60ad5" category="SST" type="3D" level="3" swapxy="true" scaling="EngineTorque">
598
+ <table name="Map WGDC - Final WGDC" address="62ad4" type="X Axis" elements="21" scaling="WGDuty16"/>
599
+ <table name="Throttle" address="62abc" type="Y Axis" elements="9" scaling="AcceleratorPedal255 %"/>
600
+ </table>
601
+
602
+ <table name="SST Throttle Requested Torque Subtractor Map Percent" address="60abe" category="SST" type="2D" level="3" swapxy="true" scaling="Percent255">
603
+ <table name="RPM" address="60d7e" type="Y Axis" elements="16" scaling="RPM"/>
604
+ </table>
605
+
606
+ <table name="SST Throttle Requested Torque Ramp Rate - SST Normal Mode" address="5f529" category="SST" type="3D" level="3" swapxy="true" scaling="Percent255">
607
+ <table name="VehicleSpeed" address="6234c" type="X Axis" elements="6" scaling="VehicleSpeed"/>
608
+ <table name="RevPerMPH" address="626da" type="Y Axis" elements="8" scaling="RPMPerMPH"/>
609
+ </table>
610
+
611
+ <table name="SST Throttle Requested Torque Ramp Rate - SST Sport Mode" address="5f4f1" category="SST" type="3D" level="3" swapxy="true" scaling="Percent255">
612
+ <table name="VehicleSpeed" address="6234c" type="X Axis" elements="6" scaling="VehicleSpeed"/>
613
+ <table name="RevPerMPH" address="626da" type="Y Axis" elements="8" scaling="RPMPerMPH"/>
614
+ </table>
615
+
616
+ <table name="SST Torque Limit #1 - Error" address="633e5" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
617
+ <table name="Throttle" address="63d58" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
618
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
619
+ </table>
620
+
621
+ <table name="SST Torque Limit #2 - Cold/Interpolated" address="634fd" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
622
+ <table name="Throttle" address="63d58" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
623
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
624
+ </table>
625
+
626
+ <table name="SST Torque Limit #3 - Hot/Interpolated" address="63615" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
627
+ <table name="Throttle" address="63d58" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
628
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
629
+ </table>
630
+
631
+ <table name="SST Torque Limit #4 - Unknown" address="64169" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
632
+ <table name="Throttle" address="651c0" type="X Axis" elements="17" scaling="AcceleratorPedal %"/>
633
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
634
+ </table>
635
+
636
+ <table name="SST Torque Map #1 - Error (unknown)" address="6386d" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
637
+ <table name="Unknown" address="63dce" type="X Axis" elements="14" scaling="uint16"/>
638
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
639
+ </table>
640
+
641
+ <table name="SST Torque Map #2- Cold/Interpolated (unknown)" address="63963" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
642
+ <table name="Unknown" address="63dce" type="X Axis" elements="14" scaling="uint16"/>
643
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
644
+ </table>
645
+
646
+ <table name="SST Torque Map #3 - Hot/Interpolated (unknown)" address="63a59" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
647
+ <table name="Unknown" address="63dce" type="X Axis" elements="14" scaling="uint16"/>
648
+ <table name="RPM" address="63da6" type="Y Axis" elements="17" scaling="RPM"/>
649
+ </table>
650
+
651
+ <table name="SST Torque Map #4 - Unknown" address="643f7" category="SST" type="3D" level="3" swapxy="true" scaling="Torque Calculation FtLbs">
652
+ <table name="Unknown" address="65298" type="X Axis" elements="14" scaling="uint16"/>
653
+ <table name="RPM" address="65270" type="Y Axis" elements="17" scaling="RPM"/>
654
+ </table>
655
+
656
+ <table name="SST Torque Limit Reduction Table by RPM (CPRU_A)" address="503fe" category="SST" type="2D" level="3" scaling="EngineTorque">
657
+ <table name="RPM" address="6135c" type="Y Axis" elements="16" scaling="RPM"/>
658
+ </table>
659
+
660
+ <table name="SST Torque Limit Reduction Table by RPM (TqLimit_2_3)" address="63260" category="SST" type="2D" level="3" scaling="EngineTorque">
661
+ <table name="RPM" address="63cdc" type="Y Axis" elements="16" scaling="RPM"/>
662
+ </table>
663
+
664
+ <table name="SST Torque Limit Reduction Table by RPM (TqLimit_4, CPRU_C)" address="643ca" category="SST" type="2D" level="3" scaling="EngineTorque">
665
+ <table name="RPM" address="6516a" type="Y Axis" elements="16" scaling="RPM"/>
666
+ </table>
667
+
668
+ <table name="SST Torque gearratio based adder" address="5f55e" category="SST" type="2D" level="3" scaling="uint8">
669
+ <table name="GearRatio" address="626da" type="Y Axis" elements="8" scaling="RPMPerMPH"/>
670
+ </table>
671
+
672
+ <table name="SST Torque Reduction On Exceedance" address="63c19" category="SST" type="3D" level="3" swapxy="true" scaling="ISCVSteps">
673
+ <table name="Map?" address="63ed0" type="X Axis" elements="21" scaling="Dynamic Boost Axis"/>
674
+ <table name="Torque" address="63eb8" type="Y Axis" elements="9" scaling="Torque Calculation Axis"/>
675
+ </table>
676
+
677
+ <table name="ECU Options Set #1" address="50072" category="ECU Options" type="2D" scaling="blobbits">
678
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
679
+ <data>bit.15</data>
680
+ <data>bit.14</data>
681
+ <data>bit.13</data>
682
+ <data>bit.12</data>
683
+ <data>bit.11</data>
684
+ <data>bit.10</data>
685
+ <data>bit.9</data>
686
+ <data>bit.8</data>
687
+ <data>bit.7</data>
688
+ <data>bit.6</data>
689
+ <data>bit.5</data>
690
+ <data>bit.4</data>
691
+ <data>bit.3</data>
692
+ <data>bit.2</data>
693
+ <data>bit.1</data>
694
+ <data>bit.0</data>
695
+ </table>
696
+ </table>
697
+
698
+ <table name="ECU Options Set #2" address="50082" category="ECU Options" type="2D" scaling="blobbits">
699
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
700
+ <data>bit.15</data>
701
+ <data>bit.14</data>
702
+ <data>bit.13</data>
703
+ <data>bit.12</data>
704
+ <data>bit.11</data>
705
+ <data>bit.10</data>
706
+ <data>bit.9</data>
707
+ <data>bit.8</data>
708
+ <data>bit.7: Enable Knock Retard</data>
709
+ <data>bit.6</data>
710
+ <data>bit.5</data>
711
+ <data>bit.4</data>
712
+ <data>bit.3</data>
713
+ <data>bit.2</data>
714
+ <data>bit.1: Enable Rear O2 Sensor</data>
715
+ <data>bit.0</data>
716
+ </table>
717
+ </table>
718
+
719
+ <table name="ECU Options Set #3" address="50092" category="ECU Options" type="2D" scaling="blobbits">
720
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
721
+ <data>bit.15</data>
722
+ <data>bit.14: Cruise Control Enabled/Disabled</data>
723
+ <data>bit.13</data>
724
+ <data>bit.12</data>
725
+ <data>bit.11</data>
726
+ <data>bit.10</data>
727
+ <data>bit.9</data>
728
+ <data>bit.8</data>
729
+ <data>bit.7</data>
730
+ <data>bit.6</data>
731
+ <data>bit.5</data>
732
+ <data>bit.4</data>
733
+ <data>bit.3</data>
734
+ <data>bit.2</data>
735
+ <data>bit.1</data>
736
+ <data>bit.0: Lean Spool Off/On</data>
737
+ </table>
738
+ </table>
739
+
740
+ <table name="ECU Options Set #4" address="500A2" category="ECU Options" type="2D" scaling="blobbits">
741
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
742
+ <data>bit.15</data>
743
+ <data>bit.14</data>
744
+ <data>bit.13</data>
745
+ <data>bit.12</data>
746
+ <data>bit.11</data>
747
+ <data>bit.10</data>
748
+ <data>bit.9</data>
749
+ <data>bit.8</data>
750
+ <data>bit.7</data>
751
+ <data>bit.6</data>
752
+ <data>bit.5</data>
753
+ <data>bit.4</data>
754
+ <data>bit.3</data>
755
+ <data>bit.2</data>
756
+ <data>bit.1</data>
757
+ <data>bit.0</data>
758
+ </table>
759
+ </table>
760
+
761
+ <table name="ECU Options Set #5" address="500B2" category="ECU Options" type="2D" scaling="blobbits">
762
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
763
+ <data>bit.15</data>
764
+ <data>bit.14</data>
765
+ <data>bit.13</data>
766
+ <data>bit.12</data>
767
+ <data>bit.11</data>
768
+ <data>bit.10</data>
769
+ <data>bit.9</data>
770
+ <data>bit.8</data>
771
+ <data>bit.7</data>
772
+ <data>bit.6</data>
773
+ <data>bit.5</data>
774
+ <data>bit.4</data>
775
+ <data>bit.3</data>
776
+ <data>bit.2</data>
777
+ <data>bit.1</data>
778
+ <data>bit.0</data>
779
+ </table>
780
+ </table>
781
+
782
+ <table name="ECU Options Set #6" address="500C2" category="ECU Options" type="2D" scaling="blobbits">
783
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
784
+ <data>bit.15</data>
785
+ <data>bit.14</data>
786
+ <data>bit.13</data>
787
+ <data>bit.12</data>
788
+ <data>bit.11</data>
789
+ <data>bit.10</data>
790
+ <data>bit.9</data>
791
+ <data>bit.8</data>
792
+ <data>bit.7</data>
793
+ <data>bit.6</data>
794
+ <data>bit.5</data>
795
+ <data>bit.4</data>
796
+ <data>bit.3</data>
797
+ <data>bit.2</data>
798
+ <data>bit.1</data>
799
+ <data>bit.0</data>
800
+ </table>
801
+ </table>
802
+
803
+ <table name="ECU Options Set #7" address="500D2" category="ECU Options" type="2D" scaling="blobbits">
804
+ <table name="Periphery Bit Number" type="Static Y Axis" elements="16">
805
+ <data>bit.15</data>
806
+ <data>bit.14</data>
807
+ <data>bit.13</data>
808
+ <data>bit.12</data>
809
+ <data>bit.11</data>
810
+ <data>bit.10</data>
811
+ <data>bit.9</data>
812
+ <data>bit.8</data>
813
+ <data>bit.7</data>
814
+ <data>bit.6</data>
815
+ <data>bit.5</data>
816
+ <data>bit.4</data>
817
+ <data>bit.3</data>
818
+ <data>bit.2</data>
819
+ <data>bit.1</data>
820
+ <data>bit.0</data>
821
+ </table>
822
+ </table>
823
+
824
+ <table name="MUT Table" address="3e66c" category="MUT" type="3D" level="2" scaling="MUT32">
825
+ <table name="X" type="Static X Axis" elements="16">
826
+ <data>0</data>
827
+ <data>1</data>
828
+ <data>2</data>
829
+ <data>3</data>
830
+ <data>4</data>
831
+ <data>5</data>
832
+ <data>6</data>
833
+ <data>7</data>
834
+ <data>8</data>
835
+ <data>9</data>
836
+ <data>A</data>
837
+ <data>B</data>
838
+ <data>C</data>
839
+ <data>D</data>
840
+ <data>E</data>
841
+ <data>F</data>
842
+ </table>
843
+ <table name="Y" type="Static Y Axis" elements="30">
844
+ <data>MUT0X</data>
845
+ <data>MUT1X</data>
846
+ <data>MUT2X</data>
847
+ <data>MUT3X</data>
848
+ <data>MUT4X</data>
849
+ <data>MUT5X</data>
850
+ <data>MUT6X</data>
851
+ <data>MUT7X</data>
852
+ <data>MUT8X</data>
853
+ <data>MUT9X</data>
854
+ <data>MUTAX</data>
855
+ <data>MUTBX</data>
856
+ <data>MUTCX</data>
857
+ <data>MUTDX</data>
858
+ <data>MUTEX</data>
859
+ <data>MUTFX</data>
860
+ <data>MUT10X</data>
861
+ <data>MUT11X</data>
862
+ <data>MUT12X</data>
863
+ <data>MUT13X</data>
864
+ <data>MUT14X</data>
865
+ <data>MUT15X</data>
866
+ <data>MUT16X</data>
867
+ <data>MUT17X</data>
868
+ <data>MUT18X</data>
869
+ <data>MUT19X</data>
870
+ <data>MUT1AX</data>
871
+ <data>MUT1BX</data>
872
+ <data>MUT1CX</data>
873
+ <data>MUT1DX</data>
874
+ </table>
875
+ </table>
876
+
877
+ </rom>