diff options
author | 2023-05-31 17:43:46 +0200 | |
---|---|---|
committer | 2023-06-01 01:43:46 +1000 | |
commit | 9f661e567c4528e7f7f662209e4b677f12b99875 (patch) | |
tree | 5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/machine/tms9914.h | |
parent | a9935073709fffa95130ef1b7ea701c3a2325b9b (diff) |
emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit function signatures. (#11283) [Ryan Holtz]
Diffstat (limited to 'src/devices/machine/tms9914.h')
-rw-r--r-- | src/devices/machine/tms9914.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/machine/tms9914.h b/src/devices/machine/tms9914.h index d67b85de025..e5d1cb7a5ba 100644 --- a/src/devices/machine/tms9914.h +++ b/src/devices/machine/tms9914.h @@ -74,21 +74,21 @@ public: // Set write callback for ACCRQ signal auto accrq_write_cb() { return m_accrq_write_func.bind(); } - DECLARE_WRITE_LINE_MEMBER(eoi_w); - DECLARE_WRITE_LINE_MEMBER(dav_w); - DECLARE_WRITE_LINE_MEMBER(nrfd_w); - DECLARE_WRITE_LINE_MEMBER(ndac_w); - DECLARE_WRITE_LINE_MEMBER(ifc_w); - DECLARE_WRITE_LINE_MEMBER(srq_w); - DECLARE_WRITE_LINE_MEMBER(atn_w); - DECLARE_WRITE_LINE_MEMBER(ren_w); + void eoi_w(int state); + void dav_w(int state); + void nrfd_w(int state); + void ndac_w(int state); + void ifc_w(int state); + void srq_w(int state); + void atn_w(int state); + void ren_w(int state); // Register access void write(offs_t offset, uint8_t data); uint8_t read(offs_t offset); // CONT output: true when 9914 is current controller-in-charge - DECLARE_READ_LINE_MEMBER(cont_r); + int cont_r(); private: // device-level overrides |