summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/phi.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-27 18:33:26 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-27 18:33:26 +0200
commit66649d7a63e9e77e65573e96f4b3c514199275a5 (patch)
tree1eb8d665433f6068352d436d00826ab29c267493 /src/devices/machine/phi.h
parentba62cea8b476f3b61a5d18dd819294d4ce053d5f (diff)
drivers starting with f, g and h: some macro removal (nw)
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);