summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-01-06 09:21:09 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-01-06 09:21:09 -0500
commitcdb95784715b109c6573a5c6a6cf3f171592b702 (patch)
treefdf9d6b76f1efd4d6658afed81e0cda2a7633fb3 /scripts/src/cpu.lua
parent9b7859db96a0306bdb722f37b27c597cb5654513 (diff)
rx01: Dumped firmware PROMs [Lord Nightmare]
rx01: Add disassembler and skeleton CPU device for custom firmware architecture [AJR]
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 08ab14077a2..cb27ee3950c 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -3048,3 +3048,20 @@ if (CPUS["WE32000"]~=null or _OPTIONS["with-tools"]) then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/we32000/we32100d.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/we32000/we32100d.h")
end
+
+--------------------------------------------------
+-- DEC RX01
+--@src/devices/cpu/rx01/rx01.h,CPUS["RX01"] = true
+--------------------------------------------------
+
+if (CPUS["RX01"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/cpu/rx01/rx01.cpp",
+ MAME_DIR .. "src/devices/cpu/rx01/rx01.h",
+ }
+end
+
+if (CPUS["RX01"]~=null or _OPTIONS["with-tools"]) then
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/rx01/rx01dasm.cpp")
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/rx01/rx01dasm.h")
+end