summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bml3/mp1802.h
diff options
context:
space:
mode:
author angelosa <lordkale4@gmail.com>2024-09-23 21:52:57 +0200
committer angelosa <lordkale4@gmail.com>2024-09-23 22:09:34 +0200
commit4ab50f53c26c1b76b2de1aaca3441833a090a20c (patch)
tree407706b11e36ec10c5b8e5a3693cc07108b51190 /src/devices/bus/bml3/mp1802.h
parent4a92506fd3a4ee6255394bd65582e4f3102f3673 (diff)
bus/bml3: standardize read/write function names
Diffstat (limited to 'src/devices/bus/bml3/mp1802.h')
-rw-r--r--src/devices/bus/bml3/mp1802.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bml3/mp1802.h b/src/devices/bus/bml3/mp1802.h
index ecc379261c6..adbca773f57 100644
--- a/src/devices/bus/bml3/mp1802.h
+++ b/src/devices/bus/bml3/mp1802.h
@@ -32,8 +32,8 @@ public:
// construction/destruction
bml3bus_mp1802_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- uint8_t bml3_mp1802_r();
- void bml3_mp1802_w(uint8_t data);
+ uint8_t read();
+ void write(uint8_t data);
protected:
virtual void device_start() override;