summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/atarisy1.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-06-26 10:18:04 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-06-26 10:18:04 -0400
commite8c51fbfb2816ea9aaefb5e6def549871ae7d73d (patch)
treec14ffef2fca428a0f52f98f35c56360169314615 /src/mame/drivers/atarisy1.cpp
parentb1576db62c9192afa5aab8302a1701c601399029 (diff)
tms5220: Use device_clock_changed instead of custom method; misc. modernization (nw)
Diffstat (limited to 'src/mame/drivers/atarisy1.cpp')
-rw-r--r--src/mame/drivers/atarisy1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/atarisy1.cpp b/src/mame/drivers/atarisy1.cpp
index 199d8fbe609..2776b61bd0a 100644
--- a/src/mame/drivers/atarisy1.cpp
+++ b/src/mame/drivers/atarisy1.cpp
@@ -398,7 +398,7 @@ WRITE8_MEMBER(atarisy1_state::via_pb_w)
/* bit 4 is connected to an up-counter, clocked by SYCLKB */
data = 5 | ((data >> 3) & 2);
- m_tms->set_frequency(ATARI_CLOCK_14MHz/2 / (16 - data));
+ m_tms->set_unscaled_clock(ATARI_CLOCK_14MHz/2 / (16 - data));
}