summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/28fxxx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/28fxxx.h')
-rw-r--r--src/devices/machine/28fxxx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/28fxxx.h b/src/devices/machine/28fxxx.h
index 153fd785960..0551f874f27 100644
--- a/src/devices/machine/28fxxx.h
+++ b/src/devices/machine/28fxxx.h
@@ -21,7 +21,7 @@ public:
RESET = 0xff
};
- DECLARE_WRITE_LINE_MEMBER(vpp) { m_program_power = state; }
+ void vpp(int state) { m_program_power = state; }
u8 read(address_space &space, offs_t offset, u8 mem_mask = ~0);
void write(offs_t offset, u8 data);
@@ -31,8 +31,8 @@ protected:
virtual void device_start() override;
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;
optional_memory_region m_region;