summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2023-06-18 16:48:00 -0400
committer AJR <ajrhacker@users.noreply.github.com>2023-06-18 16:48:38 -0400
commite2edca4404217c4d346ce17b2d029e000e2bbeef (patch)
treedb2196c854355c7b46a4c39f86c337eda71ddad1 /scripts/src/cpu.lua
parent2e8f61b754739bfd819bcf650c3bf273d78832d6 (diff)
unidasm: Add disassemblers for ST9 and ST9+ 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 8c8b0f9bb51..a7b9bc3745c 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -3833,3 +3833,13 @@ if opt_tool(CPUS, "INTERDATA16") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/interdata16/dasm16.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/interdata16/dasm16.h")
end
+
+--------------------------------------------------
+-- SGS-Thomson ST9, disassembler only
+--@src/devices/cpu/st9/st9.h,CPUS["ST9"] = true
+--------------------------------------------------
+
+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