diff options
author | 2017-07-11 00:31:18 +0200 | |
---|---|---|
committer | 2017-07-11 00:31:18 +0200 | |
commit | f27ee36f13f62165b7a23026d8728a2c71e09cf3 (patch) | |
tree | 8e1dabf97b1ac76b3dae82f2981442c3e31c45ce /src/devices/machine/mc14411.h | |
parent | 63e8b29502bcecc8b5fa1f6ced0ac36b696c7a2f (diff) |
mc14411: new methods added for disabling all output timers and set line methods for RSA and RSB inputs
Diffstat (limited to 'src/devices/machine/mc14411.h')
-rw-r--r-- | src/devices/machine/mc14411.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/machine/mc14411.h b/src/devices/machine/mc14411.h index 95d0639adae..4130fa746c9 100644 --- a/src/devices/machine/mc14411.h +++ b/src/devices/machine/mc14411.h @@ -92,8 +92,11 @@ public: DECLARE_WRITE_LINE_MEMBER(reset_w); DECLARE_WRITE8_MEMBER(rate_select_w); + DECLARE_WRITE_LINE_MEMBER(rsa_w); + DECLARE_WRITE_LINE_MEMBER(rsb_w); void timer_enable(timer_id i, bool enable); + void timer_disable_all(); protected: mc14411_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); |