summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2023-07-11 17:33:18 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2023-07-11 17:33:18 -0400
commit325f206fa50b7f444dffa02f3d066f7250f93a88 (patch)
tree7c60d10cba2dfba842a91f8a36be3e16409598e6
parentc6f0e83ecfb97c298ffcf16e136496054a88b1ca (diff)
Echo Plus board uses a TSP5220C (aka TMS5220C), not a straight TMS5220 [Lord Nightmare]
-rw-r--r--src/devices/bus/a2bus/a2mockingboard.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}