summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/tms34061.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/tms34061.h')
-rw-r--r--src/emu/video/tms34061.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/tms34061.h b/src/emu/video/tms34061.h
index 82eea0d08da..2bd0ff23157 100644
--- a/src/emu/video/tms34061.h
+++ b/src/emu/video/tms34061.h
@@ -59,8 +59,8 @@ struct tms34061_display
void tms34061_start(running_machine *machine, const struct tms34061_interface *interface);
/* reads/writes to the 34061 */
-UINT8 tms34061_r(int col, int row, int func);
-void tms34061_w(int col, int row, int func, UINT8 data);
+UINT8 tms34061_r(const address_space *space, int col, int row, int func);
+void tms34061_w(const address_space *space, int col, int row, int func, UINT8 data);
/* latch settings */
READ8_HANDLER( tms34061_latch_r );