summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/harddriv.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-01-30 17:51:36 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-01-30 17:51:36 +0100
commitb166ec2cff2566d0ae2a2bce04c298e89966c81a (patch)
treed486d4b17080e7b3f68ada755748a6dda1b66407 /src/mame/drivers/harddriv.cpp
parent7fd14ecc7d787c2851e109164a0886448cb48666 (diff)
emu\softlist_dev: removed MCFG macros (nw)
also removed MCFG_DEVICE_REMOVE, MCFG_QUANTUM_TIME and MCFG_QUANTUM_PERFECT_CPU (nw)
Diffstat (limited to 'src/mame/drivers/harddriv.cpp')
-rw-r--r--src/mame/drivers/harddriv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp
index 15fcf4bb041..1af64a14b10 100644
--- a/src/mame/drivers/harddriv.cpp
+++ b/src/mame/drivers/harddriv.cpp
@@ -2093,14 +2093,14 @@ void harddriv_new_state::racedriv_panorama_machine(machine_config &config)
RACEDRIVC_PANORAMA_SIDE_BOARD(config, "leftpcb", 0);
RACEDRIVC_PANORAMA_SIDE_BOARD(config, "rightpcb", 0);
-// MCFG_QUANTUM_TIME(attotime::from_hz(100000))
+// config.m_minimum_quantum = attotime::from_hz(100000);
subdevice<mc68681_device>("mainpcb:duartn68681")->a_tx_cb().set(FUNC(harddriv_new_state::tx_a));
// boots with 'PROGRAM OK' when using standard Hard Drivin' board type (needs 137412-115 slapstic)
subdevice<atari_slapstic_device>("mainpcb:slapstic")->set_chipnum(115);
TIMER(config, "hack_timer").configure_periodic(FUNC(harddriv_new_state::hack_timer), attotime::from_hz(60));
-// MCFG_QUANTUM_TIME(attotime::from_hz(60000))
+// config.m_minimum_quantum = attotime::from_hz(60000);
}
// this is an ugly hack, otherwise MAME's core can't seem to handle partial updates if you have multiple screens with different update frequencies.