summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2023-08-14 19:57:58 -0400
committer AJR <ajrhacker@users.noreply.github.com>2023-08-14 19:57:58 -0400
commit81c3564ccfd07e4db6b1530e7912dbac17285480 (patch)
tree4b709ad4beb4b4550823ea17ce24d8b656ee5ef8 /scripts/src/cpu.lua
parentecdce6505c499531ceb3c4b70c7d59db78e8125b (diff)
unidasm: Add disassemblers for DDP-516 and Prime S, R, V architectures
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 189aa48a7a3..5f8ddbf8f64 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -3862,3 +3862,13 @@ if opt_tool(CPUS, "ST9") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/st9/st9dasm.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/st9/st9dasm.h")
end
+
+--------------------------------------------------
+-- 3C/Honeywell DDP-516, disassembler only
+--@src/devices/cpu/ddp516/ddp516.h,CPUS["DDP516"] = true
+--------------------------------------------------
+
+if opt_tool(CPUS, "DDP516") then
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/ddp516/ddp516d.cpp")
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/ddp516/ddp516d.h")
+end