diff options
author | 2019-03-30 06:50:57 +0900 | |
---|---|---|
committer | 2019-03-29 17:50:57 -0400 | |
commit | 6dbd636a809ce7bda3ec476239f7b32a2d1de537 (patch) | |
tree | 9a9e2ef85cb6d581fe3db8eafe99c46e9f49744a /src/devices/bus/nes/konami.cpp | |
parent | 8b08ad2ce691219eefa67f8b99baaeecadd35a81 (diff) |
vrc6.cpp : Updates (#4819)
* vrc6.cpp : Updates
Implement master frequency register, Fix frequency / square duty behaviors, Use shorter type values, Reduce unnecessary lines
device/bus/nes/konami.cpp : Fix vrc6 sound volume, Remove outdated comment
* vrc6.cpp : Fix regression
Diffstat (limited to 'src/devices/bus/nes/konami.cpp')
-rw-r--r-- | src/devices/bus/nes/konami.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/bus/nes/konami.cpp b/src/devices/bus/nes/konami.cpp index 2d3f20863cb..b936b06b48a 100644 --- a/src/devices/bus/nes/konami.cpp +++ b/src/devices/bus/nes/konami.cpp @@ -560,8 +560,6 @@ void nes_konami_vrc4_device::write_h(offs_t offset, uint8_t data) In MESS: Supported. It also uses konami_irq (there are IRQ issues though: see Akumajou Densetsu intro). - TODO: Add sound capabilities support! - -------------------------------------------------*/ void nes_konami_vrc6_device::write_h(offs_t offset, uint8_t data) @@ -644,7 +642,7 @@ void nes_konami_vrc6_device::device_add_mconfig(machine_config &config) // TODO: this is not how VRC6 clock signaling works! // The board uses the CLK pin in reality, not hardcoded NTSC values! - VRC6(config, m_vrc6snd, XTAL(21'477'272)/12).add_route(ALL_OUTPUTS, "addon", 0.5); + VRC6(config, m_vrc6snd, XTAL(21'477'272)/12).add_route(ALL_OUTPUTS, "addon", 1.0); } /*------------------------------------------------- |