summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/tms6100.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/tms6100.h')
-rw-r--r--src/devices/machine/tms6100.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/machine/tms6100.h b/src/devices/machine/tms6100.h
index ec9c8c55918..b7bfd7b3b45 100644
--- a/src/devices/machine/tms6100.h
+++ b/src/devices/machine/tms6100.h
@@ -88,15 +88,15 @@ public:
// note: in 4-bit mode, use data_r, otherwise use data_line_r
void enable_4bit_mode(bool mode) { m_4bit_mode = mode; }
- DECLARE_WRITE_LINE_MEMBER(m0_w);
- DECLARE_WRITE_LINE_MEMBER(m1_w);
- DECLARE_WRITE_LINE_MEMBER(rck_w);
- DECLARE_WRITE_LINE_MEMBER(cs_w);
- DECLARE_WRITE_LINE_MEMBER(clk_w);
-
- DECLARE_WRITE8_MEMBER(add_w);
- DECLARE_READ8_MEMBER(data_r); // 4bit
- DECLARE_READ_LINE_MEMBER(data_line_r);
+ void m0_w(int state);
+ void m1_w(int state);
+ void rck_w(int state);
+ void cs_w(int state);
+ void clk_w(int state);
+
+ void add_w(u8 data);
+ u8 data_r(); // 4bit
+ int data_line_r();
protected:
tms6100_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);