diff options
author | 2020-01-06 09:21:09 -0500 | |
---|---|---|
committer | 2020-01-06 09:21:09 -0500 | |
commit | cdb95784715b109c6573a5c6a6cf3f171592b702 (patch) | |
tree | fdf9d6b76f1efd4d6658afed81e0cda2a7633fb3 /scripts/src/cpu.lua | |
parent | 9b7859db96a0306bdb722f37b27c597cb5654513 (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.lua | 17 |
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 |