summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/atarist.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-26 14:07:25 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-03-26 14:07:25 -0400
commit705cc5f2c0ae89d7e25dbc826a57df78d497076f (patch)
tree51f2704d40f6fd766f14da8f95da28b9161d613d /src/mame/drivers/atarist.cpp
parent77be69bf9695b43a56458cf56e5152ac2f18949d (diff)
atarist.cpp: YM2149 is also connected to RESET (nw)
Diffstat (limited to 'src/mame/drivers/atarist.cpp')
-rw-r--r--src/mame/drivers/atarist.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/atarist.cpp b/src/mame/drivers/atarist.cpp
index b8987f14135..84330de60d4 100644
--- a/src/mame/drivers/atarist.cpp
+++ b/src/mame/drivers/atarist.cpp
@@ -731,9 +731,10 @@ WRITE_LINE_MEMBER( st_state::write_monochrome )
WRITE_LINE_MEMBER( st_state::reset_w )
{
- //glu_reset();
+ //glue_reset();
m_mfp->reset();
m_ikbd->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
+ m_ymsnd->reset();
m_fdc->soft_reset();
//m_acsi->reset();
}