summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/f2mc16/mb9061x.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/f2mc16/mb9061x.h')
-rw-r--r--src/devices/cpu/f2mc16/mb9061x.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/f2mc16/mb9061x.h b/src/devices/cpu/f2mc16/mb9061x.h
index 97d3e977c49..5edb45ace9d 100644
--- a/src/devices/cpu/f2mc16/mb9061x.h
+++ b/src/devices/cpu/f2mc16/mb9061x.h
@@ -48,20 +48,20 @@ protected:
private:
// TBC
TIMER_CALLBACK_MEMBER(tbtc_tick);
- READ8_MEMBER(tbtc_r);
- WRITE8_MEMBER(tbtc_w);
+ u8 tbtc_r();
+ void tbtc_w(u8 data);
// INTC
- READ8_MEMBER(intc_r);
- WRITE8_MEMBER(intc_w);
+ u8 intc_r(offs_t offset);
+ void intc_w(offs_t offset, u8 data);
void intc_trigger_irq(int icr, int vector);
void intc_clear_irq(int icr, int vector);
// TIMERS
TIMER_CALLBACK_MEMBER(timer0_tick);
TIMER_CALLBACK_MEMBER(timer1_tick);
- READ8_MEMBER(timer_r);
- WRITE8_MEMBER(timer_w);
+ u8 timer_r(offs_t offset);
+ void timer_w(offs_t offset, u8 data);
void recalc_timer(int tnum);
void tin_common(int timer, int base, int state);