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/bus/pet/cb2snd.cpp | |
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/bus/pet/cb2snd.cpp')
-rw-r--r-- | src/devices/bus/pet/cb2snd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/pet/cb2snd.cpp b/src/devices/bus/pet/cb2snd.cpp index b80d2efcce8..17dfc72b30b 100644 --- a/src/devices/bus/pet/cb2snd.cpp +++ b/src/devices/bus/pet/cb2snd.cpp @@ -55,7 +55,7 @@ void pet_userport_cb2_sound_device::device_start() { } -DECLARE_WRITE_LINE_MEMBER( pet_userport_cb2_sound_device::input_m ) +void pet_userport_cb2_sound_device::input_m(int state) { m_dac->write(state); } |