summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/53c7xx.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-17 20:42:54 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-17 20:42:54 +0200
commit6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch)
tree92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/machine/53c7xx.h
parent247d71e1cabe101bd29adee2abc57fb86215a911 (diff)
devices/machine, sound and video: removed read and write macros (nw)
Diffstat (limited to 'src/devices/machine/53c7xx.h')
-rw-r--r--src/devices/machine/53c7xx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/53c7xx.h b/src/devices/machine/53c7xx.h
index e6b846f0945..5adae84d790 100644
--- a/src/devices/machine/53c7xx.h
+++ b/src/devices/machine/53c7xx.h
@@ -28,8 +28,8 @@ public:
auto host_read() { return m_host_read.bind(); }
// our API
- DECLARE_READ32_MEMBER(read);
- DECLARE_WRITE32_MEMBER(write);
+ uint32_t read(offs_t offset, uint32_t mem_mask = ~0);
+ void write(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
protected:
// device-level overrides