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/cpu/m68000/68340dma.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/cpu/m68000/68340dma.h')
-rw-r--r-- | src/emu/cpu/m68000/68340dma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/m68000/68340dma.h b/src/emu/cpu/m68000/68340dma.h index 293c241424f..d9e5033cb06 100644 --- a/src/emu/cpu/m68000/68340dma.h +++ b/src/emu/cpu/m68000/68340dma.h @@ -1,6 +1,6 @@ -READ32_HANDLER( m68340_internal_dma_r ); -WRITE32_HANDLER( m68340_internal_dma_w ); +DECLARE_READ32_HANDLER( m68340_internal_dma_r ); +DECLARE_WRITE32_HANDLER( m68340_internal_dma_w ); class m68340_dma { |