diff options
author | 2012-09-17 07:43:37 +0000 | |
---|---|---|
committer | 2012-09-17 07:43:37 +0000 | |
commit | cc16777cce9c5a2cac9d88c595b6b5f4ee70a2ea (patch) | |
tree | 496c31635729f6af1e37f3337b50e91b1f9fde97 /src/emu/machine/6532riot.h | |
parent | e25c13f2532730ebf50d0cffa0147393fd8e0228 (diff) |
Memory handler normalization, part 1.
READ/WRITE_DEVICE*_HANDLERs are now passed an
address_space &, and the 8-bit variants get a mem_mask
as well. This means they are now directly compatible
with the member function delegates. Added a generic
address space to the driver_device that can be used
when no specific address space is available. Also
added DECLARE_READ/WRITE_DEVICE*_HANDLER macros to
declare device callbacks with default mem_mask
parameters. [Aaron Giles]
Diffstat (limited to 'src/emu/machine/6532riot.h')
-rw-r--r-- | src/emu/machine/6532riot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/6532riot.h b/src/emu/machine/6532riot.h index 88ee8482e93..d82e946c4b8 100644 --- a/src/emu/machine/6532riot.h +++ b/src/emu/machine/6532riot.h @@ -121,8 +121,8 @@ extern const device_type RIOT6532; PROTOTYPES ***************************************************************************/ -READ8_DEVICE_HANDLER( riot6532_r ); -WRITE8_DEVICE_HANDLER( riot6532_w ); +DECLARE_READ8_DEVICE_HANDLER( riot6532_r ); +DECLARE_WRITE8_DEVICE_HANDLER( riot6532_w ); void riot6532_porta_in_set(device_t *device, UINT8 data, UINT8 mask); void riot6532_portb_in_set(device_t *device, UINT8 data, UINT8 mask); |