diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 12 | ||||
-rw-r--r-- | scripts/src/sound.lua | 14 |
2 files changed, 26 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 049cae04d36..f17010c82f0 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2050,6 +2050,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ldv1000hle.h,MACHINES["LDV1000HLE"] = true +--------------------------------------------------- + +if (MACHINES["LDV1000HLE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ldv1000hle.cpp", + MAME_DIR .. "src/devices/machine/ldv1000hle.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ldv4200hle.h,MACHINES["LDV4200HLE"] = true --------------------------------------------------- diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 67aa52cfd68..ed9652835b2 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1011,6 +1011,20 @@ end --------------------------------------------------- +-- Silicon Systems SSI-263A HLE +--@src/devices/sound/ssi263hle.h,SOUNDS["SSI263HLE"] = true +--------------------------------------------------- + +if (SOUNDS["SSI263HLE"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ssi263hle.cpp", + MAME_DIR .. "src/devices/sound/ssi263hle.h", + } +end + + + +--------------------------------------------------- -- Texas Instruments TMS36xx doorbell chime --@src/devices/sound/tms36xx.h,SOUNDS["TMS36XX"] = true --------------------------------------------------- |