summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mn10200/mn10200.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mn10200/mn10200.h')
-rw-r--r--src/devices/cpu/mn10200/mn10200.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mn10200/mn10200.h b/src/devices/cpu/mn10200/mn10200.h
index 46da9171f21..8ea31fa1d4b 100644
--- a/src/devices/cpu/mn10200/mn10200.h
+++ b/src/devices/cpu/mn10200/mn10200.h
@@ -40,8 +40,8 @@ public:
template <std::size_t Port> auto read_port() { return m_read_port[Port].bind(); }
template <std::size_t Port> auto write_port() { return m_write_port[Port].bind(); }
- DECLARE_READ8_MEMBER(io_control_r);
- DECLARE_WRITE8_MEMBER(io_control_w);
+ uint8_t io_control_r(offs_t offset);
+ void io_control_w(offs_t offset, uint8_t data);
void mn1020012a_internal_map(address_map &map);
protected: