diff options
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 fe2322a5bcc..22996ed36b0 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1776,3 +1776,15 @@ if (SOUNDS["GT155"]~=null) then MAME_DIR .. "src/devices/sound/gt155.h", } end + +--------------------------------------------------- +-- Nintendo MMC5 Sound +--@src/devices/sound/mmc5.h,SOUNDS["MMC5"] = true +--------------------------------------------------- + +if (SOUNDS["MMC5"]~=null) then + files { + MAME_DIR .. "src/devices/sound/mmc5.cpp", + MAME_DIR .. "src/devices/sound/mmc5.h", + } +end |