diff options
author | 2012-09-17 09:16:44 +0000 | |
---|---|---|
committer | 2012-09-17 09:16:44 +0000 | |
commit | 0dc663e2e920bad3c4c1247dfb83c66a7b06d354 (patch) | |
tree | 9364ca67c09e77b54cd7aec72c8040c441fc3a43 /src/mess/includes/corvushd.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/mess/includes/corvushd.h')
-rw-r--r-- | src/mess/includes/corvushd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/includes/corvushd.h b/src/mess/includes/corvushd.h index c8fe5081629..22eab1bcd1f 100644 --- a/src/mess/includes/corvushd.h +++ b/src/mess/includes/corvushd.h @@ -174,9 +174,9 @@ // Prototypes // UINT8 corvus_hdc_init( running_machine &machine ); -READ8_HANDLER ( corvus_hdc_status_r ); -READ8_HANDLER ( corvus_hdc_data_r ); -WRITE8_HANDLER ( corvus_hdc_data_w ); +DECLARE_READ8_HANDLER ( corvus_hdc_status_r ); +DECLARE_READ8_HANDLER ( corvus_hdc_data_r ); +DECLARE_WRITE8_HANDLER ( corvus_hdc_data_w ); #endif /* CORVUSHD_H_ */ |