summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/xbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/xbox.h')
-rw-r--r--src/mame/includes/xbox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/xbox.h b/src/mame/includes/xbox.h
index 97530e920e9..0aa37c1513a 100644
--- a/src/mame/includes/xbox.h
+++ b/src/mame/includes/xbox.h
@@ -82,10 +82,10 @@ public:
virtual void map_extra(address_space *memory_space, address_space *io_space) override;
virtual void set_host(int index, lpcbus_host_interface *host) override;
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
- DECLARE_READ8_MEMBER(read_rs232);
- DECLARE_WRITE8_MEMBER(write_rs232);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
+ uint8_t read_rs232(offs_t offset);
+ void write_rs232(offs_t offset, uint8_t data);
protected:
virtual void device_start() override;