diff options
author | 2017-03-01 22:27:03 +1100 | |
---|---|---|
committer | 2017-03-01 22:27:03 +1100 | |
commit | e9063720e5fc53dad73d04125545da5954bbd829 (patch) | |
tree | 84e7f48266f9a2bf4c6569044912eb8bf6c6e4bd /docs/release/scripts/src/cpu.lua | |
parent | 493e128506b183a81bc4571ce00f5713b41aea8c (diff) |
0.183 Release filestag183
Diffstat (limited to 'docs/release/scripts/src/cpu.lua')
-rw-r--r-- | docs/release/scripts/src/cpu.lua | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/docs/release/scripts/src/cpu.lua b/docs/release/scripts/src/cpu.lua index 72a7ffea3fa..8b2fc31abed 100644 --- a/docs/release/scripts/src/cpu.lua +++ b/docs/release/scripts/src/cpu.lua @@ -27,7 +27,6 @@ if (CPUS["SH2"]~=null or CPUS["MIPS"]~=null or CPUS["POWERPC"]~=null or CPUS["RS MAME_DIR .. "src/devices/cpu/drcuml.h", MAME_DIR .. "src/devices/cpu/uml.cpp", MAME_DIR .. "src/devices/cpu/uml.h", - MAME_DIR .. "src/devices/cpu/i386/i386dasm.cpp", MAME_DIR .. "src/devices/cpu/x86log.cpp", MAME_DIR .. "src/devices/cpu/x86log.h", MAME_DIR .. "src/devices/cpu/drcbex86.cpp", @@ -931,7 +930,7 @@ if (CPUS["I86"]~=null) then } end -if (CPUS["I86"]~=null or _OPTIONS["with-tools"]) then +if (CPUS["SH2"]~=null or CPUS["MIPS"]~=null or CPUS["POWERPC"]~=null or CPUS["RSP"]~=null or CPUS["ARM7"]~=null or CPUS["ADSP21062"]~=null or CPUS["MB86235"]~=null or CPUS["I86"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/i386/i386dasm.cpp") end @@ -951,10 +950,6 @@ if (CPUS["I386"]~=null) then } end -if (CPUS["I386"]~=null or _OPTIONS["with-tools"]) then - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/i386/i386dasm.cpp") -end - -------------------------------------------------- -- Intel i860 --@src/devices/cpu/i860/i860.h,CPUS["I860"] = true @@ -1339,6 +1334,8 @@ if (CPUS["M6805"]~=null) then MAME_DIR .. "src/devices/cpu/m6805/6805ops.hxx", MAME_DIR .. "src/devices/cpu/m6805/m68705.cpp", MAME_DIR .. "src/devices/cpu/m6805/m68705.h", + MAME_DIR .. "src/devices/cpu/m6805/m68hc05.cpp", + MAME_DIR .. "src/devices/cpu/m6805/m68hc05.h", } end @@ -2124,6 +2121,18 @@ if (CPUS["TLCS90"]~=null) then end -------------------------------------------------- +-- Toshiba TLCS-870 Series +--@src/devices/cpu/tlcs870/tlcs870.h,CPUS["TLCS870"] = true +-------------------------------------------------- + +if (CPUS["TLCS870"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870.cpp", + MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870.h", + } +end + +-------------------------------------------------- -- Toshiba TLCS-900 Series --@src/devices/cpu/tlcs900/tlcs900.h,CPUS["TLCS900"] = true -------------------------------------------------- @@ -2430,4 +2439,4 @@ end if (CPUS["CLIPPER"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/clipper/clipperd.cpp") -end
\ No newline at end of file +end |