diff options
Diffstat (limited to 'src/devices/machine/vt82c496.h')
-rw-r--r-- | src/devices/machine/vt82c496.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/machine/vt82c496.h b/src/devices/machine/vt82c496.h index e00d1186d55..48028579ed2 100644 --- a/src/devices/machine/vt82c496.h +++ b/src/devices/machine/vt82c496.h @@ -24,8 +24,9 @@ public: template <typename T> void set_ramtag(T &&tag) { m_ram.set_tag(std::forward<T>(tag)); } template <typename T> void set_isatag(T &&tag) { m_rom.set_tag(std::forward<T>(tag)); } - DECLARE_READ8_MEMBER(read); - DECLARE_WRITE8_MEMBER(write); + uint8_t read(offs_t offset); + void write(offs_t offset, uint8_t data); + protected: // device-level overrides virtual void device_start() override; |