diff options
author | 2020-01-13 21:18:27 -0500 | |
---|---|---|
committer | 2020-01-13 21:18:27 -0500 | |
commit | 96ec01a614c4eda2864a27a98ecda4d6c229ebfb (patch) | |
tree | bcf81414ea8826e90bbf9f3419684ebc797e81b3 /scripts/src/cpu.lua | |
parent | 1329d54013b1e8c67a2eaf858493d8ab1694faaa (diff) |
Add tentative VT61/VT62 disassembler and skeleton CPU device
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index cb27ee3950c..b030e4958bd 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -3016,6 +3016,23 @@ if (CPUS["VT50"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- DEC VT61 +--@src/devices/cpu/vt61/vt61.h,CPUS["VT61"] = true +-------------------------------------------------- + +if (CPUS["VT61"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/vt61/vt61.cpp", + MAME_DIR .. "src/devices/cpu/vt61/vt61.h", + } +end + +if (CPUS["VT61"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/vt61/vt61dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/vt61/vt61dasm.h") +end + +-------------------------------------------------- -- National Semiconductor PACE/INS8900 --@src/devices/cpu/pace/pace.h,CPUS["PACE"] = true -------------------------------------------------- |