summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author superctr <themvrules@gmail.com>2018-08-20 16:38:45 +0200
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-08-20 10:38:45 -0400
commit7eff0d41ceeeaf629fef9620195893d6228d1c14 (patch)
tree5d32fcf9905940772120504c731212a14bffc7d0 /src/mame
parent48d5289c8abdb23aac9f4202a396e3c9b35c7b35 (diff)
tms57002, konamigx: fix regression (#3870)
* tms57002, konamigx: fix regression tms57002: Change flag instructions back to type "2b" [nw] konamigx: Hook up channels 3,4 of TMS57002. The Lethal Enforces II schematics are not complete so I couldn't figure out exactly how they are connected to the sound chips and the DAC, but this sounds OK for now. * konamigx: document TMS57002 outputs
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/konamigx.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/konamigx.cpp b/src/mame/drivers/konamigx.cpp
index 9340143107d..dd0d64da26d 100644
--- a/src/mame/drivers/konamigx.cpp
+++ b/src/mame/drivers/konamigx.cpp
@@ -1677,9 +1677,12 @@ MACHINE_CONFIG_START(konamigx_state::konamigx)
SPEAKER(config, "rspeaker").front_right();
MCFG_DEVICE_MODIFY("dasp")
- MCFG_SOUND_ROUTE(0, "lspeaker", 0.3)
+ MCFG_SOUND_ROUTE(0, "lspeaker", 0.3) // Connected to the aux input of respective 54539.
MCFG_SOUND_ROUTE(1, "rspeaker", 0.3)
+ MCFG_SOUND_ROUTE(2, "lspeaker", 0.3)
+ MCFG_SOUND_ROUTE(3, "rspeaker", 0.3)
+
MCFG_K056800_ADD("k056800", XTAL(18'432'000))
MCFG_K056800_INT_HANDLER(INPUTLINE("soundcpu", M68K_IRQ_1))