summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/sound.lua
diff options
context:
space:
mode:
author Giulio Zausa <mail.zausa.giulio@gmail.com>2024-07-08 22:44:06 +0200
committer GitHub <noreply@github.com>2024-07-08 22:44:06 +0200
commit81284c68caf803c81989b2e55a9b6434b892ab96 (patch)
treeae4fb99b56984787217d4c764a4394387c395123 /scripts/src/sound.lua
parent0a51009b749c933ac9b480697234162b2b3ee6b7 (diff)
Fixes/ROMs for Roland stuff (#12555)
* Fixed screen * Added ROMs and GP/LP support * Fixed rom and prints * Leftover * Fix
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r--scripts/src/sound.lua22
1 files changed, 17 insertions, 5 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index ab5c7e5ebfb..848f5649099 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1624,14 +1624,26 @@ if (SOUNDS["XT446"]~=null) then
end
---------------------------------------------------
--- Roland sample players
---@src/devices/sound/rolandpcm.h,SOUNDS["ROLANDPCM"] = true
+-- Roland LP-based sample players
+--@src/devices/sound/roland_lp.h,SOUNDS["ROLANDLP"] = true
---------------------------------------------------
-if (SOUNDS["ROLANDPCM"]~=null) then
+if (SOUNDS["ROLANDLP"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/rolandpcm.cpp",
- MAME_DIR .. "src/devices/sound/rolandpcm.h",
+ MAME_DIR .. "src/devices/sound/roland_lp.cpp",
+ MAME_DIR .. "src/devices/sound/roland_lp.h",
+ }
+end
+
+---------------------------------------------------
+-- Roland GP-based sample players
+--@src/devices/sound/roland_gp.h,SOUNDS["ROLANDGP"] = true
+---------------------------------------------------
+
+if (SOUNDS["ROLANDGP"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/roland_gp.cpp",
+ MAME_DIR .. "src/devices/sound/roland_gp.h",
}
end