diff options
| author | 2018-03-16 19:08:38 +1100 | |
|---|---|---|
| committer | 2018-03-17 00:58:54 +1100 | |
| commit | 245f822e7d6b71cdba5bd79c6657c0fc6a8d0bfd (patch) | |
| tree | b133df97c618c1f40e889a5720986292e905c72b /scripts/src/cpu.lua | |
| parent | e34faf61ffac3f7f5939c3f37e7fd4e5f2c02971 (diff) | |
use more constexpr and literal classes in UML to give compiler more optimisation opportunities (nw)
Diffstat (limited to 'scripts/src/cpu.lua')
| -rw-r--r-- | scripts/src/cpu.lua | 8 |
1 files changed, 4 insertions, 4 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 |
