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/pc1403.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/pc1403.h')
-rw-r--r-- | src/mess/includes/pc1403.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/includes/pc1403.h b/src/mess/includes/pc1403.h index 051737c1af6..7fb18a7fe1e 100644 --- a/src/mess/includes/pc1403.h +++ b/src/mess/includes/pc1403.h @@ -44,8 +44,8 @@ int pc1403_ina(device_t *device); MACHINE_START( pc1403 ); -READ8_HANDLER(pc1403_asic_read); -WRITE8_HANDLER(pc1403_asic_write); +DECLARE_READ8_HANDLER(pc1403_asic_read); +DECLARE_WRITE8_HANDLER(pc1403_asic_write); /*----------- defined in video/pc1403.c -----------*/ @@ -53,8 +53,8 @@ WRITE8_HANDLER(pc1403_asic_write); VIDEO_START( pc1403 ); SCREEN_UPDATE_IND16( pc1403 ); -READ8_HANDLER(pc1403_lcd_read); -WRITE8_HANDLER(pc1403_lcd_write); +DECLARE_READ8_HANDLER(pc1403_lcd_read); +DECLARE_WRITE8_HANDLER(pc1403_lcd_write); #endif /* PC1403_H_ */ |