diff options
Diffstat (limited to 'src/devices/machine/iopcdvd.h')
-rw-r--r-- | src/devices/machine/iopcdvd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/iopcdvd.h b/src/devices/machine/iopcdvd.h index e5d95f0322f..194933eb3d9 100644 --- a/src/devices/machine/iopcdvd.h +++ b/src/devices/machine/iopcdvd.h @@ -29,8 +29,8 @@ public: iop_cdvd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual ~iop_cdvd_device() override; - DECLARE_READ8_MEMBER(read); - DECLARE_WRITE8_MEMBER(write); + uint8_t read(offs_t offset); + void write(offs_t offset, uint8_t data); protected: virtual void device_start() override; |