summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/bq48x2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/bq48x2.h')
-rw-r--r--src/devices/machine/bq48x2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/bq48x2.h b/src/devices/machine/bq48x2.h
index ddf4505b44f..6a25cc45b5f 100644
--- a/src/devices/machine/bq48x2.h
+++ b/src/devices/machine/bq48x2.h
@@ -28,7 +28,7 @@ public:
virtual uint8_t read(offs_t address);
virtual void write(offs_t address, uint8_t data);
- DECLARE_READ_LINE_MEMBER(intrq_r);
+ int intrq_r();
// Mainly used to disconnect from oscillator
void connect_osc(bool conn);
@@ -56,8 +56,8 @@ protected:
TIMER_CALLBACK_MEMBER(rtc_watchdog_cb);
void nvram_default() override;
- void nvram_read(emu_file &file) override;
- void nvram_write(emu_file &file) override;
+ bool nvram_read(util::read_stream &file) override;
+ bool nvram_write(util::write_stream &file) override;
void device_start() override;