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/x76f041.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/x76f041.h')
-rw-r--r-- | src/devices/machine/x76f041.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/x76f041.h b/src/devices/machine/x76f041.h index bd0a792cf9c..0948de185af 100644 --- a/src/devices/machine/x76f041.h +++ b/src/devices/machine/x76f041.h @@ -20,11 +20,11 @@ public: // construction/destruction x76f041_device( const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); - DECLARE_WRITE_LINE_MEMBER( write_cs ); - DECLARE_WRITE_LINE_MEMBER( write_rst ); - DECLARE_WRITE_LINE_MEMBER( write_scl ); - DECLARE_WRITE_LINE_MEMBER( write_sda ); - DECLARE_READ_LINE_MEMBER( read_sda ); + void write_cs(int state); + void write_rst(int state); + void write_scl(int state); + void write_sda(int state); + int read_sda(); protected: // device-level overrides |