diff options
author | 2008-12-14 08:15:01 +0000 | |
---|---|---|
committer | 2008-12-14 08:15:01 +0000 | |
commit | af1273c18d6bdd5c6607554f524306cb5d9df771 (patch) | |
tree | a4af8d43d5864228033f735617ccdb9ca85e4543 /src/emu/video/tms34061.h | |
parent | 9acb30bcbea19c8f1704495358e7229169eee570 (diff) |
From: Atari Ace [atari_ace@verizon.net]
Sent: Friday, December 12, 2008 9:28 AM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] yet another small Machine cleanup
Hi mamedev,
This patch modifies the tms34010.h, pc16552.h, and tms34061.h
interfaces to eliminate some more global Machine variables. Six more
deprecat.h includes eliminated.
FYI, 128u5 had 523 deprecat.h includes and ~1400 Machine variables,
now were down to 374 and ~420 respectively, so progress is being made.
~aa
Diffstat (limited to 'src/emu/video/tms34061.h')
-rw-r--r-- | src/emu/video/tms34061.h | 4 |
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 ); |