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/sound/sn76496.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/sound/sn76496.h')
-rw-r--r-- | src/devices/sound/sn76496.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/sn76496.h b/src/devices/sound/sn76496.h index f5484248715..052524d5874 100644 --- a/src/devices/sound/sn76496.h +++ b/src/devices/sound/sn76496.h @@ -24,7 +24,7 @@ public: auto ready_cb() { return m_ready_handler.bind(); } void stereo_w(u8 data); void write(u8 data); - DECLARE_READ_LINE_MEMBER( ready_r ) { return m_ready_state ? 1 : 0; } + int ready_r() { return m_ready_state ? 1 : 0; } protected: sn76496_base_device(const machine_config &mconfig, device_type type, const char *tag, |