diff options
| author | 2017-02-05 16:36:06 -0500 | |
|---|---|---|
| committer | 2017-02-05 16:36:06 -0500 | |
| commit | a59a5cbbb5e2ace3cdd23701530dd4ada7596715 (patch) | |
| tree | 64c25f320149f8fb1e8b50a2d29e32a49dd1d8f7 /scripts | |
| parent | d1d84ebe189d290ab5fd6bd0346c0563fc30b034 (diff) | |
preliminary TLCS-870 disassembler - Work in Progress (#1967)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/cpu.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 477dac60840..12f877f4f10 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2126,6 +2126,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 -------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 8c7f713f6f9..d1a7bbf0d83 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -83,6 +83,7 @@ CPUS["RSP"] = true CPUS["ALPHA8201"] = true CPUS["COP400"] = true CPUS["TLCS90"] = true +CPUS["TLCS870"] = true CPUS["TLCS900"] = true CPUS["MB88XX"] = true CPUS["MB86233"] = true |
