summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/7474.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/7474.h')
-rw-r--r--src/devices/machine/7474.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/devices/machine/7474.h b/src/devices/machine/7474.h
index 0f9d87fa5bf..3bf2f1ee2e7 100644
--- a/src/devices/machine/7474.h
+++ b/src/devices/machine/7474.h
@@ -62,19 +62,17 @@ public:
auto comp_output_cb() { return m_comp_output_func.bind(); }
// public interfaces
- DECLARE_WRITE_LINE_MEMBER( clear_w );
- DECLARE_WRITE_LINE_MEMBER( preset_w );
- DECLARE_WRITE_LINE_MEMBER( clock_w );
- DECLARE_WRITE_LINE_MEMBER( d_w );
- DECLARE_READ_LINE_MEMBER( output_r );
- DECLARE_READ_LINE_MEMBER( output_comp_r ); // NOT strictly the same as !output_r()
+ void clear_w(int state);
+ void preset_w(int state);
+ void clock_w(int state);
+ void d_w(int state);
+ int output_r();
+ int output_comp_r(); // NOT strictly the same as !output_r()
protected:
- // device-level overrides
+ // device_t implementation
virtual void device_start() override;
virtual void device_reset() override;
- virtual void device_post_load() override { }
- virtual void device_clock_changed() override { }
private:
// callbacks