summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/x76f041.h
diff options
context:
space:
mode:
author MooglyGuy <MooglyGuy@users.noreply.github.com>2023-05-31 17:43:46 +0200
committer GitHub <noreply@github.com>2023-06-01 01:43:46 +1000
commit9f661e567c4528e7f7f662209e4b677f12b99875 (patch)
tree5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/machine/x76f041.h
parenta9935073709fffa95130ef1b7ea701c3a2325b9b (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.h10
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