summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/channelf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/channelf.h')
-rw-r--r--src/mame/includes/channelf.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/channelf.h b/src/mame/includes/channelf.h
index d28b2dcb026..37b9390eda8 100644
--- a/src/mame/includes/channelf.h
+++ b/src/mame/includes/channelf.h
@@ -29,14 +29,14 @@ public:
, m_cart(*this, "cartslot")
{ }
- DECLARE_READ8_MEMBER(port_0_r);
- DECLARE_READ8_MEMBER(port_1_r);
- DECLARE_READ8_MEMBER(port_4_r);
- DECLARE_READ8_MEMBER(port_5_r);
- DECLARE_WRITE8_MEMBER(port_0_w);
- DECLARE_WRITE8_MEMBER(port_1_w);
- DECLARE_WRITE8_MEMBER(port_4_w);
- DECLARE_WRITE8_MEMBER(port_5_w);
+ uint8_t port_0_r();
+ uint8_t port_1_r();
+ uint8_t port_4_r();
+ uint8_t port_5_r();
+ void port_0_w(uint8_t data);
+ void port_1_w(uint8_t data);
+ void port_4_w(uint8_t data);
+ void port_5_w(uint8_t data);
uint8_t *m_p_videoram;
uint8_t m_latch[6];
uint8_t m_val_reg;