summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/sound.lua
diff options
context:
space:
mode:
author Devin Acker <d@revenant1.net>2024-09-11 01:05:58 -0400
committer GitHub <noreply@github.com>2024-09-11 15:05:58 +1000
commitdfb266a8d9607329dc923567727fc0e3570e0013 (patch)
tree0feb15890f8b0c6dd01b1127242fa7209d18f606 /scripts/src/sound.lua
parentb558650344a4be83aa871f425dab83d737947de0 (diff)
casio/zoomer.cpp: Emulated Casio/Tandy "Zoomer" PDA. (#12739)
* sound/upd65043gfu01.cpp: Added basic support for NEC uPD65043GF-U01 sound chip. * casio/zoomer_rtc.cpp: Emulated Zoomer real-time clock chip. * src/devices/cpu/nec: Don't log message on bus lock by default. New working systems ---------- Casio / Tandy Zoomer (Z-PDA / Z-7000) [Devin Acker]
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r--scripts/src/sound.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index 431783ccb74..054d87a266f 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1765,3 +1765,15 @@ if (SOUNDS["CF61909"]~=null) then
MAME_DIR .. "src/devices/sound/cf61909.h",
}
end
+
+---------------------------------------------------
+-- NEC uPD65043GF-U01
+--@src/devices/sound/upd65043gfu01.h,SOUNDS["UPD65043GFU01"] = true
+---------------------------------------------------
+
+if (SOUNDS["UPD65043GFU01"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/upd65043gfu01.cpp",
+ MAME_DIR .. "src/devices/sound/upd65043gfu01.h",
+ }
+end