diff options
Diffstat (limited to 'src/devices/machine/x2212.h')
-rw-r--r-- | src/devices/machine/x2212.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/x2212.h b/src/devices/machine/x2212.h index 4a2fb8ddb56..5fbcb23f532 100644 --- a/src/devices/machine/x2212.h +++ b/src/devices/machine/x2212.h @@ -45,11 +45,11 @@ public: void set_auto_save(bool auto_save) { m_auto_save = auto_save; } // I/O operations - DECLARE_READ8_MEMBER( read ); - DECLARE_WRITE8_MEMBER( write ); + u8 read(address_space &space, offs_t offset); + void write(offs_t offset, uint8_t data); - DECLARE_WRITE_LINE_MEMBER( store ); - DECLARE_WRITE_LINE_MEMBER( recall ); + void store(int state); + void recall(int state); protected: x2212_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int size_data); |