summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/apf/rom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/apf/rom.h')
-rw-r--r--src/devices/bus/apf/rom.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/apf/rom.h b/src/devices/bus/apf/rom.h
index 89d82f51a99..ab129289493 100644
--- a/src/devices/bus/apf/rom.h
+++ b/src/devices/bus/apf/rom.h
@@ -16,7 +16,7 @@ public:
apf_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// reading and writing
- virtual DECLARE_READ8_MEMBER(read_rom) override;
+ virtual uint8_t read_rom(offs_t offset) override;
protected:
apf_rom_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
@@ -35,7 +35,7 @@ public:
apf_basic_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// reading and writing
- virtual DECLARE_READ8_MEMBER(extra_rom) override;
+ virtual uint8_t extra_rom(offs_t offset) override;
};
// ======================> apf_spacedst_device
@@ -47,8 +47,8 @@ public:
apf_spacedst_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// reading and writing
- virtual DECLARE_READ8_MEMBER(read_ram) override;
- virtual DECLARE_WRITE8_MEMBER(write_ram) override;
+ virtual uint8_t read_ram(offs_t offset) override;
+ virtual void write_ram(offs_t offset, uint8_t data) override;
};