diff options
author | 2010-12-31 21:42:55 +0000 | |
---|---|---|
committer | 2010-12-31 21:42:55 +0000 | |
commit | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch) | |
tree | 415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/cpu/mcs48/mcs48.h | |
parent | 2ca38fad3e665d2e4e0212263a07819d36f4ba7f (diff) |
running_device -> device_t
They both already existed. No sense in having two names for the
same object type.
Diffstat (limited to 'src/emu/cpu/mcs48/mcs48.h')
-rw-r--r-- | src/emu/cpu/mcs48/mcs48.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mcs48/mcs48.h b/src/emu/cpu/mcs48/mcs48.h index 5e6b2d73f6d..a2087bba6a5 100644 --- a/src/emu/cpu/mcs48/mcs48.h +++ b/src/emu/cpu/mcs48/mcs48.h @@ -119,8 +119,8 @@ DECLARE_LEGACY_CPU_DEVICE(M58715, m58715); /* 8049 clone */ ***************************************************************************/ /* functions for talking to the input/output buffers on the UPI41-class chips */ -UINT8 upi41_master_r(running_device *device, UINT8 a0); -void upi41_master_w(running_device *device, UINT8 a0, UINT8 data); +UINT8 upi41_master_r(device_t *device, UINT8 a0); +void upi41_master_w(device_t *device, UINT8 a0, UINT8 data); /* disassemblers */ |