diff options
author | 2021-08-13 19:56:57 -0400 | |
---|---|---|
committer | 2021-08-13 19:56:57 -0400 | |
commit | 10262d869bef3a917e64977edd254f302d733430 (patch) | |
tree | 527c263a026071f328e5d3c58ce6f3866e034e58 /src/devices/machine/applefdintf.cpp | |
parent | ee0fe3ee35e7976fae2d0cbc902714eca62d57f1 (diff) |
swim1, swim2: Implement callback for DAT1BYTE output
Diffstat (limited to 'src/devices/machine/applefdintf.cpp')
-rw-r--r-- | src/devices/machine/applefdintf.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/machine/applefdintf.cpp b/src/devices/machine/applefdintf.cpp index 2dc9fcec319..d81f77562d3 100644 --- a/src/devices/machine/applefdintf.cpp +++ b/src/devices/machine/applefdintf.cpp @@ -52,7 +52,8 @@ applefdintf_device::applefdintf_device(const machine_config &mconfig, device_typ m_phases_cb(*this), m_devsel_cb(*this), m_sel35_cb(*this), - m_hdsel_cb(*this) + m_hdsel_cb(*this), + m_dat1byte_cb(*this) { } @@ -62,6 +63,7 @@ void applefdintf_device::device_start() m_devsel_cb.resolve_safe(); m_sel35_cb.resolve_safe(); m_hdsel_cb.resolve_safe(); + m_dat1byte_cb.resolve_safe(); save_item(NAME(m_phases)); save_item(NAME(m_phases_input)); } |