summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2016-03-16 01:26:37 +0100
committer hap <happppp@users.noreply.github.com>2016-03-16 01:26:37 +0100
commitce5cb07631ec328fa970624dd517239201072829 (patch)
tree75421887702f286b9b380c30f9087931c1ecffe9 /scripts/src
parent4865a87134addb57783f1b1e2456276f239c2349 (diff)
tms1k: split part 2, renamed files
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/cpu.lua15
1 files changed, 8 insertions, 7 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index ed6378f93f8..7986bf158e7 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -1842,19 +1842,20 @@ if (CPUS["AVR8"]~=null or _OPTIONS["with-tools"]) then
end
--------------------------------------------------
--- Texas Instruments TMS0980
---@src/devices/cpu/tms0980/tms0980.h,CPUS["TMS0980"] = true
+-- Texas Instruments TMS1000 series
+--@src/devices/cpu/tms0980/tms1000.h,CPUS["TMS1000"] = true
--------------------------------------------------
-if (CPUS["TMS0980"]~=null) then
+if (CPUS["TMS1000"]~=null) then
files {
- MAME_DIR .. "src/devices/cpu/tms0980/tms0980.cpp",
- MAME_DIR .. "src/devices/cpu/tms0980/tms0980.h",
+ MAME_DIR .. "src/devices/cpu/tms0980/tms1k_base.cpp",
+ MAME_DIR .. "src/devices/cpu/tms0980/tms1k_base.h",
+ MAME_DIR .. "src/devices/cpu/tms0980/tms1000.h",
}
end
-if (CPUS["TMS0980"]~=null or _OPTIONS["with-tools"]) then
- table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/tms0980/tms0980d.cpp")
+if (CPUS["TMS1000"]~=null or _OPTIONS["with-tools"]) then
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/tms0980/tms1k_dasm.cpp")
end
--------------------------------------------------