diff options
| author | 2020-01-06 09:21:09 -0500 | |
|---|---|---|
| committer | 2020-01-06 09:21:09 -0500 | |
| commit | cdb95784715b109c6573a5c6a6cf3f171592b702 (patch) | |
| tree | fdf9d6b76f1efd4d6658afed81e0cda2a7633fb3 /scripts | |
| 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')
| -rw-r--r-- | scripts/src/cpu.lua | 17 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 18 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 88dff0a0418..856b820ceed 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -151,6 +151,7 @@ CPUS["DSP56000"] = true CPUS["VT50"] = true CPUS["PACE"] = true CPUS["WE32000"] = true +CPUS["RX01"] = true -------------------------------------------------- -- specify available sound cores; some of these are |
