diff options
Diffstat (limited to 'src/devices/cpu/mcs48/mcs48.h')
-rw-r--r-- | src/devices/cpu/mcs48/mcs48.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mcs48/mcs48.h b/src/devices/cpu/mcs48/mcs48.h index 73f15090dae..8041d11a89d 100644 --- a/src/devices/cpu/mcs48/mcs48.h +++ b/src/devices/cpu/mcs48/mcs48.h @@ -622,8 +622,8 @@ class upi41_cpu_device : public mcs48_cpu_device { public: /* functions for talking to the input/output buffers on the UPI41-class chips */ - DECLARE_READ8_MEMBER(upi41_master_r); - DECLARE_WRITE8_MEMBER(upi41_master_w); + uint8_t upi41_master_r(offs_t offset); + void upi41_master_w(offs_t offset, uint8_t data); protected: // construction/destruction |