Update cpu.lua for 9bb87665ba

This commit is contained in:
AJR 2022-11-16 15:35:52 -05:00
parent 0505c71619
commit d653fc0703

View File

@ -3195,6 +3195,26 @@ if opt_tool(CPUS, "HP2100") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/hp2100/hp2100d.h")
end
--------------------------------------------------
-- SDS Sigma 2 (disassembler only)
--@src/devices/cpu/sigma2/sigma2.h,CPUS["SIGMA2"] = true
--------------------------------------------------
if opt_tool(CPUS, "SIGMA2") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sigma2/sigma2d.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sigma2/sigma2d.h")
end
--------------------------------------------------
-- Control Data Corporation 1700 (disassembler only)
--@src/devices/cpu/cdc1700/cdc1700.h,CPUS["CDC1700"] = true
--------------------------------------------------
if opt_tool(CPUS, "CDC1700") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/cdc1700/cdc1700d.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/cdc1700/cdc1700d.h")
end
--------------------------------------------------
-- National Semiconductor HPC
--@src/devices/cpu/hpc/hpc.h,CPUS["HPC"] = true