mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
Update cpu.lua for 9bb87665ba
This commit is contained in:
parent
0505c71619
commit
d653fc0703
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user