diff options
| author | 2018-03-16 19:08:38 +1100 | |
|---|---|---|
| committer | 2018-03-17 00:58:54 +1100 | |
| commit | 245f822e7d6b71cdba5bd79c6657c0fc6a8d0bfd (patch) | |
| tree | b133df97c618c1f40e889a5720986292e905c72b /scripts | |
| parent | e34faf61ffac3f7f5939c3f37e7fd4e5f2c02971 (diff) | |
use more constexpr and literal classes in UML to give compiler more optimisation opportunities (nw)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/cpu.lua | 8 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 2 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 39f2bdd75f5..ee4ebc3328f 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -253,18 +253,18 @@ if (CPUS["APEXC"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- --- AT&T DSP16A ---@src/devices/cpu/dsp16/dsp16.h,CPUS["DSP16A"] = true +-- WE|AT&T DSP16 +--@src/devices/cpu/dsp16/dsp16.h,CPUS["DSP16"] = true -------------------------------------------------- -if (CPUS["DSP16A"]~=null) then +if (CPUS["DSP16"]~=null) then files { MAME_DIR .. "src/devices/cpu/dsp16/dsp16.cpp", MAME_DIR .. "src/devices/cpu/dsp16/dsp16.h", } end -if (CPUS["DSP16A"]~=null or _OPTIONS["with-tools"]) then +if (CPUS["DSP16"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/dsp16/dsp16dis.cpp") table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/dsp16/dsp16dis.h") end diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 1f2ab550f8c..809ea30252e 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -61,7 +61,7 @@ CPUS["MIPS"] = true CPUS["R3000"] = true CPUS["PSX"] = true CPUS["SH"] = true -CPUS["DSP16A"] = true +CPUS["DSP16"] = true CPUS["DSP32C"] = true CPUS["PIC16C5X"] = true CPUS["PIC16C62X"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 3c4e1f49a0d..375c3bc9221 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -61,7 +61,7 @@ CPUS["MIPS"] = true CPUS["R3000"] = true CPUS["PSX"] = true CPUS["SH"] = true -CPUS["DSP16A"] = true +CPUS["DSP16"] = true CPUS["DSP32C"] = true CPUS["PIC16C5X"] = true CPUS["PIC16C62X"] = true |
