summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/atarisy1.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-07 20:51:28 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-07 20:57:39 -0500
commite23e8c432fc9aeb7eda4a8b76b4b65c9ec7e5d93 (patch)
treeb9dbee1e51c8de36e964d60e7d44ce5200cf592e /src/mame/drivers/atarisy1.cpp
parenta90412feaf71f8b46517131e32afbf7313528d19 (diff)
via6522: Eliminate truly ancient hack to default clock to that of first CPU (nw)
All VIAs in MAME now have properly configured clocks.
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 da07124c3dd..f015ea086b5 100644
--- a/src/mame/drivers/atarisy1.cpp
+++ b/src/mame/drivers/atarisy1.cpp
@@ -795,7 +795,7 @@ static MACHINE_CONFIG_START( atarisy1 )
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 1.0)
/* via */
- MCFG_DEVICE_ADD("via6522_0", VIA6522, 0)
+ MCFG_DEVICE_ADD("via6522_0", VIA6522, ATARI_CLOCK_14MHz/8)
MCFG_VIA6522_READPA_HANDLER(READ8(atarisy1_state, via_pa_r))
MCFG_VIA6522_READPB_HANDLER(READ8(atarisy1_state, via_pb_r))
MCFG_VIA6522_WRITEPA_HANDLER(WRITE8(atarisy1_state, via_pa_w))