diff options
author | 2024-09-23 21:52:57 +0200 | |
---|---|---|
committer | 2024-09-23 22:09:34 +0200 | |
commit | 4ab50f53c26c1b76b2de1aaca3441833a090a20c (patch) | |
tree | 407706b11e36ec10c5b8e5a3693cc07108b51190 /src/devices/bus/bml3/kanji.h | |
parent | 4a92506fd3a4ee6255394bd65582e4f3102f3673 (diff) |
bus/bml3: standardize read/write function names
Diffstat (limited to 'src/devices/bus/bml3/kanji.h')
-rw-r--r-- | src/devices/bus/bml3/kanji.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bml3/kanji.h b/src/devices/bus/bml3/kanji.h index d1e456508ae..57b275843e2 100644 --- a/src/devices/bus/bml3/kanji.h +++ b/src/devices/bus/bml3/kanji.h @@ -27,8 +27,8 @@ public: // construction/destruction bml3bus_kanji_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - uint8_t bml3_kanji_r(offs_t offset); - void bml3_kanji_w(offs_t offset, uint8_t data); + uint8_t read(offs_t offset); + void write(offs_t offset, uint8_t data); protected: virtual void device_start() override; |