From 296043b5d1e04f2d92c6ef566e42f3ea8e0eb513 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Wed, 24 Apr 2019 13:51:22 +1000 Subject: 0.209 Release files --- docs/release/scripts/src/bus.lua | 8 ++++++++ docs/release/scripts/src/cpu.lua | 17 +++++++++++++++++ docs/release/scripts/src/machine.lua | 23 +++++++++++++++++++++++ docs/release/scripts/src/netlist.lua | 3 +++ docs/release/scripts/src/sound.lua | 20 ++++++++++++++++++++ 5 files changed, 71 insertions(+) (limited to 'docs/release/scripts/src') diff --git a/docs/release/scripts/src/bus.lua b/docs/release/scripts/src/bus.lua index 14130a37ae7..26d0f336fed 100644 --- a/docs/release/scripts/src/bus.lua +++ b/docs/release/scripts/src/bus.lua @@ -1320,6 +1320,14 @@ if (BUSES["ISA"]~=null) then MAME_DIR .. "src/devices/bus/isa/bt54x.h", MAME_DIR .. "src/devices/bus/isa/dcb.cpp", MAME_DIR .. "src/devices/bus/isa/dcb.h", + MAME_DIR .. "src/devices/bus/isa/ultra12f.cpp", + MAME_DIR .. "src/devices/bus/isa/ultra12f.h", + MAME_DIR .. "src/devices/bus/isa/ultra14f.cpp", + MAME_DIR .. "src/devices/bus/isa/ultra14f.h", + MAME_DIR .. "src/devices/bus/isa/ultra24f.cpp", + MAME_DIR .. "src/devices/bus/isa/ultra24f.h", + MAME_DIR .. "src/devices/bus/isa/tekram_dc820.cpp", + MAME_DIR .. "src/devices/bus/isa/tekram_dc820.h", } end diff --git a/docs/release/scripts/src/cpu.lua b/docs/release/scripts/src/cpu.lua index 8c461e0ce16..5bbd4cd55cc 100644 --- a/docs/release/scripts/src/cpu.lua +++ b/docs/release/scripts/src/cpu.lua @@ -2836,6 +2836,23 @@ if (CPUS["MEG"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/sound/megd.h") end +-------------------------------------------------- +-- Yamaha DSPV +--@src/devices/sound/dspv.h,CPUS["DSPV"] = true +-------------------------------------------------- + +if (CPUS["DSPV"]~=null) then + files { + MAME_DIR .. "src/devices/sound/dspv.cpp", + MAME_DIR .. "src/devices/sound/dspv.h", + } +end + +if (CPUS["DSPV"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/sound/dspvd.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/sound/dspvd.h") +end + -------------------------------------------------- -- National Semiconductor NS32000 series --@src/devices/cpu/ns32000/ns32000.h,CPUS["NS32000"] = true diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index 18157093999..fd6fb511f39 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -2541,6 +2541,17 @@ if (MACHINES["SAA1043"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/scc68070.h,MACHINES["SCC68070"] = true +--------------------------------------------------- +if (MACHINES["SCC68070"]~=null) then + files { + MAME_DIR .. "src/devices/machine/scc68070.cpp", + MAME_DIR .. "src/devices/machine/scc68070.h", + } +end + --------------------------------------------------- -- --@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true @@ -2616,6 +2627,8 @@ end --------------------------------------------------- -- --@src/devices/machine/spg2xx.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/spg110.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/sunplus_gcm394.h,MACHINES["SPG2XX"] = true --------------------------------------------------- if (MACHINES["SPG2XX"]~=null) then @@ -2624,8 +2637,18 @@ if (MACHINES["SPG2XX"]~=null) then MAME_DIR .. "src/devices/machine/spg2xx.h", MAME_DIR .. "src/devices/machine/spg2xx_audio.cpp", MAME_DIR .. "src/devices/machine/spg2xx_audio.h", + MAME_DIR .. "src/devices/machine/spg2xx_io.cpp", + MAME_DIR .. "src/devices/machine/spg2xx_io.h", + MAME_DIR .. "src/devices/machine/spg2xx_sysdma.cpp", + MAME_DIR .. "src/devices/machine/spg2xx_sysdma.h", + MAME_DIR .. "src/devices/machine/spg2xx_video.cpp", + MAME_DIR .. "src/devices/machine/spg2xx_video.h", MAME_DIR .. "src/devices/machine/spg110.cpp", MAME_DIR .. "src/devices/machine/spg110.h", + MAME_DIR .. "src/devices/machine/spg110_video.cpp", + MAME_DIR .. "src/devices/machine/spg110_video.h", + MAME_DIR .. "src/devices/machine/sunplus_gcm394.cpp", + MAME_DIR .. "src/devices/machine/sunplus_gcm394.h", } end diff --git a/docs/release/scripts/src/netlist.lua b/docs/release/scripts/src/netlist.lua index 09575cacffc..5397fc9eaa4 100644 --- a/docs/release/scripts/src/netlist.lua +++ b/docs/release/scripts/src/netlist.lua @@ -85,6 +85,9 @@ project "netlist" MAME_DIR .. "src/lib/netlist/tools/nl_convert.h", MAME_DIR .. "src/lib/netlist/analog/nld_bjt.cpp", MAME_DIR .. "src/lib/netlist/analog/nld_bjt.h", + MAME_DIR .. "src/lib/netlist/analog/nld_generic_models.h", + MAME_DIR .. "src/lib/netlist/analog/nld_mosfet.cpp", + MAME_DIR .. "src/lib/netlist/analog/nld_mosfet.h", MAME_DIR .. "src/lib/netlist/analog/nlid_fourterm.cpp", MAME_DIR .. "src/lib/netlist/analog/nlid_fourterm.h", MAME_DIR .. "src/lib/netlist/analog/nld_fourterm.h", diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index f2d6c9b979d..cc24f2ba57f 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -590,6 +590,7 @@ end --------------------------------------------------- -- Namco custom sound chips --@src/devices/sound/namco.h,SOUNDS["NAMCO"] = true +--@src/devices/sound/namco_163.h,SOUNDS["NAMCO_163"] = true --@src/devices/sound/n63701x.h,SOUNDS["NAMCO_63701X"] = true --@src/devices/sound/c140.h,SOUNDS["C140"] = true --@src/devices/sound/c352.h,SOUNDS["C352"] = true @@ -602,6 +603,13 @@ if (SOUNDS["NAMCO"]~=null or SOUNDS["NAMCO_15XX"]~=null or SOUNDS["NAMCO_CUS30"] } end +if (SOUNDS["NAMCO_163"]~=null) then + files { + MAME_DIR .. "src/devices/sound/namco_163.cpp", + MAME_DIR .. "src/devices/sound/namco_163.h", + } +end + if (SOUNDS["NAMCO_63701X"]~=null) then files { MAME_DIR .. "src/devices/sound/n63701x.cpp", @@ -1498,6 +1506,18 @@ if (SOUNDS["IOPSPU"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/sound/swp20.h,SOUNDS["SWP20"] = true +--------------------------------------------------- + +if (SOUNDS["SWP20"]~=null) then + files { + MAME_DIR .. "src/devices/sound/swp20.cpp", + MAME_DIR .. "src/devices/sound/swp20.h", + } +end + --------------------------------------------------- -- --@src/devices/sound/swp30.h,SOUNDS["SWP30"] = true -- cgit v1.2.3