diff options
Diffstat (limited to 'src/mame/includes/exterm.h')
-rw-r--r-- | src/mame/includes/exterm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/exterm.h b/src/mame/includes/exterm.h index ab29fd209a9..f50ed063513 100644 --- a/src/mame/includes/exterm.h +++ b/src/mame/includes/exterm.h @@ -12,7 +12,7 @@ extern UINT16 *exterm_slave_videoram; PALETTE_INIT( exterm ); void exterm_scanline_update(const device_config *screen, bitmap_t *bitmap, int scanline, const tms34010_display_params *params); -void exterm_to_shiftreg_master(UINT32 address, UINT16* shiftreg); -void exterm_from_shiftreg_master(UINT32 address, UINT16* shiftreg); -void exterm_to_shiftreg_slave(UINT32 address, UINT16* shiftreg); -void exterm_from_shiftreg_slave(UINT32 address, UINT16* shiftreg); +void exterm_to_shiftreg_master(const address_space *space, UINT32 address, UINT16* shiftreg); +void exterm_from_shiftreg_master(const address_space *space, UINT32 address, UINT16* shiftreg); +void exterm_to_shiftreg_slave(const address_space *space, UINT32 address, UINT16* shiftreg); +void exterm_from_shiftreg_slave(const address_space *space, UINT32 address, UINT16* shiftreg); |