diff options
| author | 2017-09-22 01:02:05 +0200 | |
|---|---|---|
| committer | 2017-09-22 02:01:42 +0200 | |
| commit | e3ccbe1852759ad826889ef782ef7e9c0fabce6c (patch) | |
| tree | 28de3b022285ac685b45a1ea0108f84d44b4b1eb /scripts | |
| parent | 3ddb27cd82ca6f1312687128888d42e73073c34d (diff) | |
Wrote a new device for TA7630, hooked it up to buggychl.cpp (nw)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/sound.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index a4797ce9bf3..d96a6b73466 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1433,3 +1433,15 @@ if (SOUNDS["DAVE"]~=null) then MAME_DIR .. "src/devices/sound/dave.h", } end + +--------------------------------------------------- +-- Toshiba TA7630 +--@src/devices/sound/ta7630.h,SOUNDS["TA7630"] = true +--------------------------------------------------- + +if (SOUNDS["TA7630"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ta7630.cpp", + MAME_DIR .. "src/devices/sound/ta7630.h", + } +end diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index b89d4a5489e..6a0e4b7092b 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -265,6 +265,7 @@ SOUNDS["AD1848"] = true SOUNDS["VOLT_REG"] = true SOUNDS["MEA8000"] = true SOUNDS["DAC76"] = true +SOUNDS["TA7630"] = true SOUNDS["MM5837"] = true --SOUNDS["DAVE"] = true |
