diff options
Diffstat (limited to 'src/mess/machine/dccons.c')
-rw-r--r-- | src/mess/machine/dccons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/dccons.c b/src/mess/machine/dccons.c index bc16869e319..795fee8d99a 100644 --- a/src/mess/machine/dccons.c +++ b/src/mess/machine/dccons.c @@ -112,7 +112,7 @@ TIMER_CALLBACK_MEMBER(dc_cons_state::atapi_xfer_end ) atapi_regs[ATAPI_REG_COUNTLOW] = atapi_xferlen & 0xff; atapi_regs[ATAPI_REG_COUNTHIGH] = (atapi_xferlen>>8)&0xff; - atapi_timer->adjust(machine().device<cpu_device>("maincpu")->cycles_to_attotime((ATAPI_CYCLES_PER_SECTOR * (atapi_xferlen/2048)))); + atapi_timer->adjust(m_maincpu->cycles_to_attotime((ATAPI_CYCLES_PER_SECTOR * (atapi_xferlen/2048)))); } else { @@ -685,7 +685,7 @@ WRITE64_MEMBER(dc_cons_state::dc_mess_g1_ctrl_w ) } atapi_xferbase = g1bus_regs[SB_GDSTAR]; - atapi_timer->adjust(machine().device<cpu_device>("maincpu")->cycles_to_attotime((ATAPI_CYCLES_PER_SECTOR * (atapi_xferlen/2048)))); + atapi_timer->adjust(m_maincpu->cycles_to_attotime((ATAPI_CYCLES_PER_SECTOR * (atapi_xferlen/2048)))); } break; } |