summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/gen_latch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/gen_latch.h')
-rw-r--r--src/devices/machine/gen_latch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/machine/gen_latch.h b/src/devices/machine/gen_latch.h
index fc217410d06..682c6093b01 100644
--- a/src/devices/machine/gen_latch.h
+++ b/src/devices/machine/gen_latch.h
@@ -33,6 +33,7 @@ public:
// configuration
auto data_pending_callback() { return m_data_pending_cb.bind(); }
void set_separate_acknowledge(bool ack) { m_separate_acknowledge = ack; }
+ void boost_after_write(attotime duration) { m_boost_after_write = duration; }
DECLARE_READ_LINE_MEMBER(pending_r);
@@ -55,6 +56,7 @@ private:
bool m_separate_acknowledge;
bool m_latch_written;
+ attotime m_boost_after_write;
devcb_write_line m_data_pending_cb;
};