summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-23 01:24:10 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2018-07-23 10:24:10 +1000
commit88b1546f30a6384cdbc3dcd8e26389a9208e3aba (patch)
tree79ced1df7efab420e45c9e37dd99599cfbeeb38d /scripts/src/cpu.lua
parentfedf58aa42846315d2acb4499743835676dc6135 (diff)
Flesh out TLCS870 core (#3763)
* rewrote most of the execution for my tlcs870 core * no longer the case (nw) * note updates (nw) * address concerns, const qualify more things where possible (nw) * more const (nw) * oops (nw) * consistency (nw)
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 456a7412131..a94c4c709a9 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -2383,6 +2383,11 @@ end
if (CPUS["TLCS870"]~=null) then
files {
MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870.cpp",
+ MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870_ops.cpp",
+ MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870_ops_reg.cpp",
+ MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870_ops_src.cpp",
+ MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870_ops_dst.cpp",
+ MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870_ops_helper.cpp",
MAME_DIR .. "src/devices/cpu/tlcs870/tlcs870.h",
}
end