summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/phi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/phi.h')
-rw-r--r--src/devices/machine/phi.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/phi.h b/src/devices/machine/phi.h
index dc3d0d76fd2..755f073a2d9 100644
--- a/src/devices/machine/phi.h
+++ b/src/devices/machine/phi.h
@@ -84,10 +84,10 @@ public:
// 2 13
// 1 14
// 0 15
- DECLARE_WRITE16_MEMBER(reg16_w);
- DECLARE_READ16_MEMBER(reg16_r);
- DECLARE_WRITE8_MEMBER(reg8_w);
- DECLARE_READ8_MEMBER(reg8_r);
+ void reg16_w(offs_t offset, uint16_t data);
+ uint16_t reg16_r(offs_t offset);
+ void reg8_w(offs_t offset, uint8_t data);
+ uint8_t reg8_r(offs_t offset);
protected:
phi_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);