diff options
author | 2020-07-15 05:56:22 +0900 | |
---|---|---|
committer | 2020-07-14 16:56:22 -0400 | |
commit | e07a7f19b5b13484309e102e92b9b073f79e5ecc (patch) | |
tree | dde98d279c58922917d6418ad749a7057e2957b8 /scripts/src | |
parent | c810971c7fc5d156326a1ca4c0f413d231cb3940 (diff) |
Implement FDS sound emulation (#6953)
* Implement FDS sound emulation
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/sound.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 3b98b9095ce..a49d74dbc9e 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1589,3 +1589,15 @@ if (SOUNDS["KS0164"]~=null) then MAME_DIR .. "src/devices/sound/ks0164.h", } end + +--------------------------------------------------- +-- +--@src/devices/sound/rp2c33_snd.h,SOUNDS["RP2C33_SOUND"] = true +--------------------------------------------------- + +if (SOUNDS["RP2C33_SOUND"]~=null) then + files { + MAME_DIR .. "src/devices/sound/rp2c33_snd.cpp", + MAME_DIR .. "src/devices/sound/rp2c33_snd.h", + } +end |