summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h6280/h6280.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h6280/h6280.h')
-rw-r--r--src/devices/cpu/h6280/h6280.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/h6280/h6280.h b/src/devices/cpu/h6280/h6280.h
index 10ddbeaf77b..923591eec93 100644
--- a/src/devices/cpu/h6280/h6280.h
+++ b/src/devices/cpu/h6280/h6280.h
@@ -357,17 +357,17 @@ protected:
// internal registers
void internal_map(address_map &map);
- DECLARE_READ8_MEMBER( irq_status_r );
- DECLARE_WRITE8_MEMBER( irq_status_w );
+ uint8_t irq_status_r(offs_t offset);
+ void irq_status_w(offs_t offset, uint8_t data);
- DECLARE_READ8_MEMBER( timer_r );
- DECLARE_WRITE8_MEMBER( timer_w );
+ uint8_t timer_r();
+ void timer_w(offs_t offset, uint8_t data);
- DECLARE_READ8_MEMBER( port_r );
- DECLARE_WRITE8_MEMBER( port_w );
+ uint8_t port_r();
+ void port_w(uint8_t data);
- DECLARE_READ8_MEMBER( io_buffer_r );
- DECLARE_WRITE8_MEMBER( psg_w );
+ uint8_t io_buffer_r();
+ void psg_w(offs_t offset, uint8_t data);
devcb_read8 m_port_in_cb;
devcb_write8 m_port_out_cb;