summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mk1.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2019-02-16 14:54:27 +0100
committer hap <happppp@users.noreply.github.com>2019-02-16 14:54:47 +0100
commit983ffa2de6b409709a41d28aa1690604c7efc1b7 (patch)
treeff844cf0a6c5a3ef882b2e177706b517a00fe951 /src/mame/drivers/mk1.cpp
parentb3936428ab7ab16420a196146f1ace2c4bd6c12a (diff)
mk1: 2mhz more likely (nw)
Diffstat (limited to 'src/mame/drivers/mk1.cpp')
-rw-r--r--src/mame/drivers/mk1.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/mk1.cpp b/src/mame/drivers/mk1.cpp
index 80b61af95af..e0aa24791b7 100644
--- a/src/mame/drivers/mk1.cpp
+++ b/src/mame/drivers/mk1.cpp
@@ -185,13 +185,12 @@ void mk1_state::machine_start()
MACHINE_CONFIG_START(mk1_state::mk1)
/* basic machine hardware */
- MCFG_DEVICE_ADD( "maincpu", F8, 1000000 ) // MK3850
+ MCFG_DEVICE_ADD( "maincpu", F8, 2000000 ) // MK3850
MCFG_DEVICE_PROGRAM_MAP(mk1_mem)
MCFG_DEVICE_IO_MAP(mk1_io)
MCFG_DEVICE_IRQ_ACKNOWLEDGE_DEVICE("f3853", f3853_device, int_acknowledge)
- config.m_minimum_quantum = attotime::from_hz(60);
- f3853_device &f3853(F3853(config, "f3853", 1000000));
+ f3853_device &f3853(F3853(config, "f3853", 2000000));
f3853.int_req_callback().set_inputline("maincpu", F8_INPUT_LINE_INT_REQ);
/* video hardware */