summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/icm7170.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/icm7170.h')
-rw-r--r--src/devices/machine/icm7170.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/machine/icm7170.h b/src/devices/machine/icm7170.h
index e38a556b06c..2fef930fa04 100644
--- a/src/devices/machine/icm7170.h
+++ b/src/devices/machine/icm7170.h
@@ -61,15 +61,16 @@ protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
// device_rtc_interface overrides
virtual void rtc_clock_updated(int year, int month, int day, int day_of_week, int hour, int minute, int second) override;
// device_nvram_interface overrides
virtual void nvram_default() override;
- virtual void nvram_read(emu_file &file) override;
- virtual void nvram_write(emu_file &file) override;
+ virtual bool nvram_read(util::read_stream &file) override;
+ virtual bool nvram_write(util::write_stream &file) override;
+
+ TIMER_CALLBACK_MEMBER(clock_tick);
private:
void recalc_irqs();