diff options
author | 2018-08-24 10:47:41 +0900 | |
---|---|---|
committer | 2018-08-23 21:47:41 -0400 | |
commit | 3204234f8d7edce4a3373be3895d6852f3480ff8 (patch) | |
tree | 53d7e681f530a10a906cec33a68d48fffa11ebbe /scripts/src | |
parent | a6e60706169401c038eb97e5bac54665f29335d9 (diff) |
Add huc6230 Emulation (#3829)
* Add huc6230 Emulation
huc6272.cpp : Add ADPCM transfer, Add save states
PC-FXGA for PC-9801 C Bus is released in December 1995 in Japan, Correct metadata
* huc6272.cpp : Fix ADPCM address
* huc6230.cpp : Simpler interpolate
* huc6230.cpp : Fix clamp
huc6272.cpp : Fix ADPCM nibble
* huc6272.cpp : Fix data type
* Revert pcfxga year; PC-FXGA for PC9801 C-bus is not dumped?
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/sound.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index f8e7f0f20a1..db5930d3801 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -382,6 +382,20 @@ end --------------------------------------------------- +-- Hudsonsoft HuC6230 SoundBox +--@src/devices/sound/huc6230.h,SOUNDS["HUC6230"] = true +--------------------------------------------------- + +if (SOUNDS["HUC6230"]~=null) then + files { + MAME_DIR .. "src/devices/sound/huc6230.cpp", + MAME_DIR .. "src/devices/sound/huc6230.h", + } +end + + + +--------------------------------------------------- -- Hudsonsoft C6280 sound chip --@src/devices/sound/c6280.h,SOUNDS["C6280"] = true --------------------------------------------------- |