summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/tp0370.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hexbus/tp0370.h')
-rw-r--r--src/devices/bus/hexbus/tp0370.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hexbus/tp0370.h b/src/devices/bus/hexbus/tp0370.h
index b17c2f997d4..eb8b37dfd60 100644
--- a/src/devices/bus/hexbus/tp0370.h
+++ b/src/devices/bus/hexbus/tp0370.h
@@ -25,8 +25,8 @@ public:
void device_start() override;
void device_reset() override;
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
// Callbacks
auto int_cb() { return m_int.bind(); }