diff options
author | 2012-09-17 09:16:44 +0000 | |
---|---|---|
committer | 2012-09-17 09:16:44 +0000 | |
commit | 0dc663e2e920bad3c4c1247dfb83c66a7b06d354 (patch) | |
tree | 9364ca67c09e77b54cd7aec72c8040c441fc3a43 /src/emu/video/tms34061.h | |
parent | 3cce7e019e095296b5ce2bb45d19b1209bed961d (diff) |
Memory handler cleanup 3. Add mem_mask parameter
to 8-bit handlers to match the others. To ease
pain, added DECLARE_READ/WRITE_HANDLER macros that
set up a default parameter. Also updated devcb so
that the handlers can be called with or without the
mem_mask. [Aaron Giles]
Diffstat (limited to 'src/emu/video/tms34061.h')
-rw-r--r-- | src/emu/video/tms34061.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/tms34061.h b/src/emu/video/tms34061.h index 97ab6ba0b9d..aa751b82ef2 100644 --- a/src/emu/video/tms34061.h +++ b/src/emu/video/tms34061.h @@ -66,8 +66,8 @@ UINT8 tms34061_r(address_space &space, int col, int row, int func); void tms34061_w(address_space &space, int col, int row, int func, UINT8 data); /* latch settings */ -READ8_HANDLER( tms34061_latch_r ); -WRITE8_HANDLER( tms34061_latch_w ); +DECLARE_READ8_HANDLER( tms34061_latch_r ); +DECLARE_WRITE8_HANDLER( tms34061_latch_w ); /* video update handling */ void tms34061_get_display_state(struct tms34061_display *state); |