diff options
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index ee42ffeb93a..be0e7eed434 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2853,29 +2853,29 @@ if opt_tool(CPUS, "SUPERFX") then end -------------------------------------------------- --- Rockwell B5000 family ---@src/devices/cpu/b5000/b5000.h,CPUS["B5000"] = true ---@src/devices/cpu/b5000/b6000.h,CPUS["B5000"] = true ---@src/devices/cpu/b5000/b6100.h,CPUS["B5000"] = true +-- Rockwell A/B5000 family +--@src/devices/cpu/rw5000/b5000.h,CPUS["RW5000"] = true +--@src/devices/cpu/rw5000/b6000.h,CPUS["RW5000"] = true +--@src/devices/cpu/rw5000/b6100.h,CPUS["RW5000"] = true -------------------------------------------------- -if CPUS["B5000"] then +if CPUS["RW5000"] then files { - MAME_DIR .. "src/devices/cpu/b5000/b5000base.cpp", - MAME_DIR .. "src/devices/cpu/b5000/b5000base.h", - MAME_DIR .. "src/devices/cpu/b5000/b5000.cpp", - MAME_DIR .. "src/devices/cpu/b5000/b5000.h", - MAME_DIR .. "src/devices/cpu/b5000/b5000op.cpp", - MAME_DIR .. "src/devices/cpu/b5000/b6000.cpp", - MAME_DIR .. "src/devices/cpu/b5000/b6000.h", - MAME_DIR .. "src/devices/cpu/b5000/b6100.cpp", - MAME_DIR .. "src/devices/cpu/b5000/b6100.h", + MAME_DIR .. "src/devices/cpu/rw5000/rw5000base.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/rw5000base.h", + MAME_DIR .. "src/devices/cpu/rw5000/b5000.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/b5000.h", + MAME_DIR .. "src/devices/cpu/rw5000/b5000op.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/b6000.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/b6000.h", + MAME_DIR .. "src/devices/cpu/rw5000/b6100.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/b6100.h", } end -if opt_tool(CPUS, "B5000") then - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/b5000/b5000d.cpp") - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/b5000/b5000d.h") +if opt_tool(CPUS, "RW5000") then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/rw5000/rw5000d.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/rw5000/rw5000d.h") end -------------------------------------------------- |