diff options
author | 2019-07-05 19:00:52 -0400 | |
---|---|---|
committer | 2019-07-05 19:02:43 -0400 | |
commit | 30afb4579d0a605147708672c4655f61afd4cdf7 (patch) | |
tree | 020e4adbef67be559d7ace517f0865ee24c4d2f5 /scripts/src | |
parent | f0478fdbb8a43d8f44aeb102adb5e728d014c6fa (diff) |
Add disassembler and skeleton CPU device for CompactRISC CR16B architecture
vtech_unk1.cpp: Driver moved to glcx.cpp (nw)
Diffstat (limited to 'scripts/src')
-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 c77f74ff90f..f49d8e48927 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2933,3 +2933,20 @@ if (CPUS["F2MC16"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/f2mc16/f2mc16dasm.cpp") table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/f2mc16/f2mc16dasm.h") end + +-------------------------------------------------- +-- National Semiconductor CR16B +--@src/devices/cpu/cr16b/cr16bdasm.h,CPUS["CR16B"] = true +-------------------------------------------------- + +if (CPUS["CR16B"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/cr16b/cr16b.cpp", + MAME_DIR .. "src/devices/cpu/cr16b/cr16b.h", + } +end + +if (CPUS["CR16B"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/cr16b/cr16bdasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/cr16b/cr16bdasm.h") +end |