diff options
author | 2016-08-10 13:05:14 +0300 | |
---|---|---|
committer | 2016-08-10 13:05:14 +0300 | |
commit | 8bf6e9ebb59cc01b7db3c573977120c43c6dbd5e (patch) | |
tree | 0b87fcfb269caa416998f4ae2e7f1850fd528769 /scripts/src | |
parent | d37c65b787b67fe98ae209cf68de5458d0ab549f (diff) |
pofo: Added skeleton for PCD3311T sound chip. (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/sound.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index bf1e87ebc7e..30d049c72e1 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1352,6 +1352,7 @@ if (SOUNDS["UPD1771"]~=null) then MAME_DIR .. "src/devices/sound/upd1771.h", } end + --------------------------------------------------- -- GB_SOUND --@src/devices/sound/gb.h,SOUNDS["GB_SOUND"] = true @@ -1363,3 +1364,15 @@ if (SOUNDS["GB_SOUND"]~=null) then MAME_DIR .. "src/devices/sound/gb.h", } end + +--------------------------------------------------- +-- PCD3311 +--@src/devices/sound/gb.h,SOUNDS["PCD3311"] = true +--------------------------------------------------- + +if (SOUNDS["PCD3311"]~=null) then + files { + MAME_DIR .. "src/devices/sound/pcd3311.cpp", + MAME_DIR .. "src/devices/sound/pcd3311.h", + } +end |