diff options
| author | 2018-03-17 09:08:28 +0100 | |
|---|---|---|
| committer | 2018-03-17 09:10:18 +0100 | |
| commit | 3ffd6b839facbf554ffd1a8f52853f6cea518178 (patch) | |
| tree | c3e5ddf7d2e43163f085d66b17f0443b7479aa99 /scripts | |
| parent | 61f1bf74772b3cc48c8016d593a3f0d0b90ec7fc (diff) | |
uPD934G: Preliminary emulation
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/sound.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
3 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 72b21469220..a67c71ed782 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1459,3 +1459,15 @@ if (SOUNDS["LC7535"]~=null) then MAME_DIR .. "src/devices/sound/lc7535.h", } end + +--------------------------------------------------- +-- NEC uPD934G +--@src/devices/sound/upd934g.h,SOUNDS["UPD934G"] = true +--------------------------------------------------- + +if (SOUNDS["UPD934G"]~=null) then + files { + MAME_DIR .. "src/devices/sound/upd934g.cpp", + MAME_DIR .. "src/devices/sound/upd934g.h", + } +end diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 809ea30252e..6b7fa76d002 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -268,6 +268,7 @@ SOUNDS["TA7630"] = true SOUNDS["MM5837"] = true --SOUNDS["DAVE"] = true SOUNDS["LC7535"] = true +--SOUNDS["UPD934G"] = true -------------------------------------------------- -- specify available video cores diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 375c3bc9221..4f1eb635908 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -270,6 +270,7 @@ SOUNDS["MEA8000"] = true --SOUNDS["MM5837"] = true SOUNDS["DAVE"] = true --SOUNDS["LC7535"] = true +SOUNDS["UPD934G"] = true -------------------------------------------------- -- specify available video cores |
