diff options
author | 2017-02-05 12:46:44 +0100 | |
---|---|---|
committer | 2017-02-05 12:46:44 +0100 | |
commit | 39370345d6a6f5bae5844da024af42196243f1c4 (patch) | |
tree | a552bbd8b6b63768eda95e063d93db9596055868 /scripts/src | |
parent | 07d28fd8474dab2aa3896262362c9620a012fc55 (diff) |
Remove some dependency between src/devices/ and src/mame (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/sound.lua | 12 | ||||
-rw-r--r-- | scripts/src/video.lua | 13 |
2 files changed, 25 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 91dfe094c50..171ad3f30cc 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1424,3 +1424,15 @@ if (SOUNDS["MM5837"]~=null) then MAME_DIR .. "src/devices/sound/mm5837.h", } end + +--------------------------------------------------- +-- Intelligent Designs DAVE +--@src/devices/sound/dave.h,MACHINES["DAVE"] = true +--------------------------------------------------- + +if (SOUNDS["DAVE"]~=null) then + files { + MAME_DIR .. "src/devices/sound/dave.cpp", + MAME_DIR .. "src/devices/sound/dave.h", + } +end diff --git a/scripts/src/video.lua b/scripts/src/video.lua index ba52eb78bcd..770de5db893 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -936,3 +936,16 @@ if (VIDEOS["EF9369"]~=null) then MAME_DIR .. "src/devices/video/ef9369.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/ppu2c0x.h,VIDEOS["PPU2C0X"] = true +-------------------------------------------------- + +if (VIDEOS["PPU2C0X"]~=null) then + files { + MAME_DIR .. "src/devices/video/ppu2c0x.cpp", + MAME_DIR .. "src/devices/video/ppu2c0x.h", + } +end + |