diff options
author | 2008-12-11 03:39:20 +0000 | |
---|---|---|
committer | 2008-12-11 03:39:20 +0000 | |
commit | 506da3c4321292afd7c635aff2c1310c6d78d5f9 (patch) | |
tree | 73e6fdcb47a2a4438dcc9141e4d48761f9eec53a /src/emu/machine/mb3773.h | |
parent | 4c0948ce0032ecb1e8c82175b9361aa1b9c17878 (diff) |
From: Atari Ace [atari_ace@verizon.net]
Sent: Wednesday, December 10, 2008 9:27 AM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] Add machine to some emu/machine init methods
Hi mamedev,
This patch widens some machine init interfaces to pass the machine
parameter, allowing more Machine global references to be eliminated.
Eventually most of these need to be converted to devices, but this
change reduces the deprecation surface in the meantime. I also
attached the script I used to do the initial changes to the drivers,
which handled about 90% of the cases without further editing.
~aa
Diffstat (limited to 'src/emu/machine/mb3773.h')
-rw-r--r-- | src/emu/machine/mb3773.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/mb3773.h b/src/emu/machine/mb3773.h index 90ba5ec5ed8..7a5503fecbd 100644 --- a/src/emu/machine/mb3773.h +++ b/src/emu/machine/mb3773.h @@ -7,6 +7,6 @@ #define MB3773_H ( 1 ) extern void mb3773_set_ck( UINT8 new_ck ); -extern void mb3773_init( void ); +extern void mb3773_init( running_machine *machine ); #endif |