summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/gen_latch.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-08-31 09:06:27 +1000
committer Vas Crabb <vas@vastheman.com>2022-08-31 09:09:18 +1000
commit0f6d486cd329cba43da0f0f06f1bafa64f2e32f6 (patch)
treeb4a7ba379d40bddd3b0e1c0255d3dfcb4fc74dba /src/devices/machine/gen_latch.h
parent229ea4b3a1b44bd558e2c99c31dfe3ad66c34ea0 (diff)
Revert "gen_latch: add boost interleave conf setting"
Jamming magic behaviour for a few systems into a common device just makes code more convoluted and harder to maintain. The trouble with these things is that you quickly end up stuck with them, and then untangling the dependency on magical behaviour that never belonged in the device in the first place becomes an inordinate amount of work. In this case, it isn't even saving a substantial amount of code in the drivers. This reverts commit 229ea4b3a1b44bd558e2c99c31dfe3ad66c34ea0.
Diffstat (limited to 'src/devices/machine/gen_latch.h')
-rw-r--r--src/devices/machine/gen_latch.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/machine/gen_latch.h b/src/devices/machine/gen_latch.h
index 682c6093b01..fc217410d06 100644
--- a/src/devices/machine/gen_latch.h
+++ b/src/devices/machine/gen_latch.h
@@ -33,7 +33,6 @@ 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);
@@ -56,7 +55,6 @@ private:
bool m_separate_acknowledge;
bool m_latch_written;
- attotime m_boost_after_write;
devcb_write_line m_data_pending_cb;
};