diff options
author | 2020-06-17 20:42:54 +0200 | |
---|---|---|
committer | 2020-06-17 20:42:54 +0200 | |
commit | 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch) | |
tree | 92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/machine/53c7xx.h | |
parent | 247d71e1cabe101bd29adee2abc57fb86215a911 (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.h | 4 |
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 |