From 325f206fa50b7f444dffa02f3d066f7250f93a88 Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Tue, 11 Jul 2023 17:33:18 -0400 Subject: [PATCH] Echo Plus board uses a TSP5220C (aka TMS5220C), not a straight TMS5220 [Lord Nightmare] --- src/devices/bus/a2bus/a2mockingboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/bus/a2bus/a2mockingboard.cpp b/src/devices/bus/a2bus/a2mockingboard.cpp index bbfbca452fb..355fb2aa40a 100644 --- a/src/devices/bus/a2bus/a2mockingboard.cpp +++ b/src/devices/bus/a2bus/a2mockingboard.cpp @@ -216,7 +216,7 @@ void a2bus_echoplus_device::device_add_mconfig(machine_config &config) m_ay2->add_route(ALL_OUTPUTS, "rspeaker", 0.5); SPEAKER(config, "echosp").front_center(); - TMS5220(config, m_tms, 640000); + TMS5220C(config, m_tms, 640000); // echo+ has a TSP5220C soldered down on it m_tms->add_route(ALL_OUTPUTS, "echosp", 1.0); }