diff options
Diffstat (limited to 'src/devices/machine/at28c16.h')
-rw-r--r-- | src/devices/machine/at28c16.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/at28c16.h b/src/devices/machine/at28c16.h index 56b75a8cfcc..54c87fccb4f 100644 --- a/src/devices/machine/at28c16.h +++ b/src/devices/machine/at28c16.h @@ -29,8 +29,8 @@ public: // construction/destruction at28c16_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - DECLARE_WRITE8_MEMBER( write ); - DECLARE_READ8_MEMBER( read ); + void write(offs_t offset, uint8_t data); + uint8_t read(offs_t offset); protected: // device-level overrides |