diff options
Diffstat (limited to 'docs/release/scripts/src/cpu.lua')
-rw-r--r-- | docs/release/scripts/src/cpu.lua | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/docs/release/scripts/src/cpu.lua b/docs/release/scripts/src/cpu.lua index a9dfe0ecd70..126d28ed524 100644 --- a/docs/release/scripts/src/cpu.lua +++ b/docs/release/scripts/src/cpu.lua @@ -646,6 +646,12 @@ if (CPUS["SH2"]~=null) then MAME_DIR .. "src/devices/cpu/sh2/sh2.cpp", MAME_DIR .. "src/devices/cpu/sh2/sh2.h", MAME_DIR .. "src/devices/cpu/sh2/sh2fe.cpp", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_bus.cpp", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_bus.h", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_sci.cpp", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_sci.h", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_wdt.cpp", + MAME_DIR .. "src/devices/cpu/sh2/sh7604_wdt.h", --MAME_DIR .. "src/devices/cpu/sh2/sh2comn.cpp", --MAME_DIR .. "src/devices/cpu/sh2/sh2comn.h", --MAME_DIR .. "src/devices/cpu/sh2/sh2drc.cpp", @@ -698,6 +704,22 @@ if (CPUS["HPHYBRID"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- HP Nanoprocessor +--@src/devices/cpu/nanoprocessor/nanoprocessor.h,CPUS["NANOPROCESSOR"] = true +-------------------------------------------------- + +if (CPUS["NANOPROCESSOR"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/nanoprocessor/nanoprocessor.cpp", + MAME_DIR .. "src/devices/cpu/nanoprocessor/nanoprocessor.h", + } +end + +if (CPUS["NANOPROCESSOR"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/nanoprocessor/nanoprocessor_dasm.cpp") +end + +-------------------------------------------------- -- Hudsonsoft 6280 --@src/devices/cpu/h6280/h6280.h,CPUS["H6280"] = true -------------------------------------------------- @@ -1350,9 +1372,7 @@ if (CPUS["M6809"]~=null) then end if (CPUS["M6809"]~=null or _OPTIONS["with-tools"]) then - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/m6809/6809dasm.cpp") - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/m6809/6309dasm.cpp") - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/m6809/knmidasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/m6809/6x09dasm.cpp") end -------------------------------------------------- @@ -1495,6 +1515,7 @@ if (CPUS["NEC"]~=null) then files { MAME_DIR .. "src/devices/cpu/nec/nec.cpp", MAME_DIR .. "src/devices/cpu/nec/nec.h", + MAME_DIR .. "src/devices/cpu/nec/nec_common.h", MAME_DIR .. "src/devices/cpu/nec/necea.h", MAME_DIR .. "src/devices/cpu/nec/necinstr.h", MAME_DIR .. "src/devices/cpu/nec/necinstr.hxx", |