summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/vt1682_alu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/vt1682_alu.h')
-rw-r--r--src/mame/machine/vt1682_alu.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/machine/vt1682_alu.h b/src/mame/machine/vt1682_alu.h
index 46987f5d9e9..2ce10af3309 100644
--- a/src/mame/machine/vt1682_alu.h
+++ b/src/mame/machine/vt1682_alu.h
@@ -17,21 +17,21 @@ public:
// so that we can filter logging, sound ALU gets used hundreds of times a frame, so logging it is unwise
void set_sound_alu() { m_is_sound_alu = true; }
- DECLARE_READ8_MEMBER(alu_out_1_r);
- DECLARE_READ8_MEMBER(alu_out_2_r);
- DECLARE_READ8_MEMBER(alu_out_3_r);
- DECLARE_READ8_MEMBER(alu_out_4_r);
- DECLARE_READ8_MEMBER(alu_out_5_r);
- DECLARE_READ8_MEMBER(alu_out_6_r);
-
- DECLARE_WRITE8_MEMBER(alu_oprand_1_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_2_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_3_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_4_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_5_mult_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_6_mult_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_5_div_w);
- DECLARE_WRITE8_MEMBER(alu_oprand_6_div_w);
+ uint8_t alu_out_1_r();
+ uint8_t alu_out_2_r();
+ uint8_t alu_out_3_r();
+ uint8_t alu_out_4_r();
+ uint8_t alu_out_5_r();
+ uint8_t alu_out_6_r();
+
+ void alu_oprand_1_w(uint8_t data);
+ void alu_oprand_2_w(uint8_t data);
+ void alu_oprand_3_w(uint8_t data);
+ void alu_oprand_4_w(uint8_t data);
+ void alu_oprand_5_mult_w(uint8_t data);
+ void alu_oprand_6_mult_w(uint8_t data);
+ void alu_oprand_5_div_w(uint8_t data);
+ void alu_oprand_6_div_w(uint8_t data);
protected: