diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 12 | ||||
-rw-r--r-- | scripts/src/machine.lua | 24 | ||||
-rw-r--r-- | scripts/src/mame/frontend.lua | 4 | ||||
-rw-r--r-- | scripts/src/sound.lua | 25 |
4 files changed, 53 insertions, 12 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 85131fa8094..1534e2cf561 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2913,6 +2913,18 @@ end --------------------------------------------------- -- +--@src/devices/bus/hp9845_io/hp9845_io.h,BUSES["HP9845_IO"] = true +--------------------------------------------------- + +if (BUSES["HP9845_IO"]~=null) then + files { + MAME_DIR .. "src/devices/bus/hp9845_io/hp9845_io.cpp", + MAME_DIR .. "src/devices/bus/hp9845_io/98035.cpp" + } +end + +--------------------------------------------------- +-- --@src/devices/bus/compis/graphics.h,BUSES["COMPIS_GRAPHICS"] = true --------------------------------------------------- diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 647e815f242..f1cecc70ec8 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -671,6 +671,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds1386.h,MACHINES["DS1386"] = true +--------------------------------------------------- + +if (MACHINES["DS1386"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds1386.cpp", + MAME_DIR .. "src/devices/machine/ds1386.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds2401.h,MACHINES["DS2401"] = true --------------------------------------------------- @@ -1263,18 +1275,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/matsucd.h,MACHINES["MATSUCD"] = true ---------------------------------------------------- - -if (MACHINES["MATSUCD"]~=null) then - files { - MAME_DIR .. "src/devices/machine/matsucd.cpp", - MAME_DIR .. "src/devices/machine/matsucd.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/mb14241.h,MACHINES["MB14241"] = true --------------------------------------------------- diff --git a/scripts/src/mame/frontend.lua b/scripts/src/mame/frontend.lua index 41d0598cb15..93129cf85d9 100644 --- a/scripts/src/mame/frontend.lua +++ b/scripts/src/mame/frontend.lua @@ -61,6 +61,8 @@ files { MAME_DIR .. "src/frontend/mame/cheat.h", MAME_DIR .. "src/frontend/mame/clifront.cpp", MAME_DIR .. "src/frontend/mame/clifront.h", + MAME_DIR .. "src/frontend/mame/console.cpp", + MAME_DIR .. "src/frontend/mame/console.h", MAME_DIR .. "src/frontend/mame/info.cpp", MAME_DIR .. "src/frontend/mame/info.h", MAME_DIR .. "src/frontend/mame/language.cpp", @@ -71,6 +73,8 @@ files { MAME_DIR .. "src/frontend/mame/mame.h", MAME_DIR .. "src/frontend/mame/mameopts.cpp", MAME_DIR .. "src/frontend/mame/mameopts.h", + MAME_DIR .. "src/frontend/mame/media_ident.cpp", + MAME_DIR .. "src/frontend/mame/media_ident.h", MAME_DIR .. "src/frontend/mame/pluginopts.cpp", MAME_DIR .. "src/frontend/mame/pluginopts.h", MAME_DIR .. "src/frontend/mame/ui/ui.cpp", diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index ba2e689a820..fc555804072 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -532,6 +532,20 @@ end --------------------------------------------------- +-- MEA8000 Voice Synthesizer +--@src/devices/sound/mea8000.h,SOUNDS["MEA8000"] = true +--------------------------------------------------- + +if (SOUNDS["MEA8000"]~=null) then + files { + MAME_DIR .. "src/devices/sound/mea8000.cpp", + MAME_DIR .. "src/devices/sound/mea8000.h", + } +end + + + +--------------------------------------------------- -- MOS 6560VIC --@src/devices/sound/mos6560.h,SOUNDS["MOS656X"] = true --------------------------------------------------- @@ -1376,3 +1390,14 @@ if (SOUNDS["PCD3311"]~=null) then MAME_DIR .. "src/devices/sound/pcd3311.h", } end + +--------------------------------------------------- +-- Voltage Regulator +--@src/devices/sound/volt_reg.h,SOUNDS["VOLT_REG"] = true +--------------------------------------------------- +if (SOUNDS["VOLT_REG"]~=null) then + files { + MAME_DIR .. "src/devices/sound/volt_reg.cpp", + MAME_DIR .. "src/devices/sound/volt_reg.h", + } +end |