summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-05-01 17:20:50 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-05-01 17:20:50 +0200
commit521198036de2c291dfb1b6b439514bb730501d43 (patch)
treebd44307b6ed8c532281d51173cc5e62157495190 /scripts/src
parent73521257e8948896aa919465b6ecb3f4f5823155 (diff)
move gb sound and gb lcd in order to make snes compile, since used by bus device (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/sound.lua11
-rw-r--r--scripts/src/video.lua12
2 files changed, 23 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index 019071aca32..8039109941a 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1356,3 +1356,14 @@ if (SOUNDS["UPD1771"]~=null) then
MAME_DIR .. "src/devices/sound/upd1771.h",
}
end
+---------------------------------------------------
+-- GB_SOUND
+--@src/devices/sound/gb.h,SOUNDS["GB_SOUND"] = true
+---------------------------------------------------
+
+if (SOUNDS["GB_SOUND"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/gb.cpp",
+ MAME_DIR .. "src/devices/sound/gb.h",
+ }
+end
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 337dd9d363c..a8993df052b 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -864,3 +864,15 @@ if (VIDEOS["JANGOU_BLITTER"]~=null) then
MAME_DIR .. "src/devices/video/jangou_blitter.h",
}
end
+
+--------------------------------------------------
+--
+--@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true
+--------------------------------------------------
+
+if (VIDEOS["GB_LCD"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/gb_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gb_lcd.h",
+ }
+end