summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
committer hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
commit184f4dcfa2c445f5fa90364ec24537e1c6e2e555 (patch)
treeacbadb08e4242f2c27b6d542628164d6946c8d81 /src/devices/bus/isa
parentcb510e940afbb1918beb56bdf40cc912aa842fa8 (diff)
schedule: rename add_scheduling_quantum to add_quantum, added perfect_quatum and use that for most cases of boost_interleave
Diffstat (limited to 'src/devices/bus/isa')
-rw-r--r--src/devices/bus/isa/ibm_mfc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/ibm_mfc.cpp b/src/devices/bus/isa/ibm_mfc.cpp
index 21e388318ac..a6dbfc81efa 100644
--- a/src/devices/bus/isa/ibm_mfc.cpp
+++ b/src/devices/bus/isa/ibm_mfc.cpp
@@ -315,7 +315,7 @@ void isa8_ibm_mfc_device::ibm_mfc_w(offs_t offset, uint8_t data)
case 0x2:
case 0x3:
{
- machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(1000));
+ machine().scheduler().perfect_quantum(attotime::from_usec(1000));
m_d71055c_0->write(offset, data);
break;
}