summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pcecommn.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-08-10 08:33:51 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-08-10 08:33:51 +0000
commitc75c14d4d3541f93dd3ad10054c9cc09407493e9 (patch)
treeee5693b028ef22d3ee70ce5f78a5a0ffbb7e75a7 /src/mame/machine/pcecommn.h
parent24991f6661251f71458f3d3fbe3c5315f32d07a9 (diff)
All driver inits are now member of state classes.
Added DECLARE_DRIVER_INIT macro to define it H file, and DRIVER_INIT_MEMBER for member declaration in C files Updated all drivers accordingly (no whatsnew)
Diffstat (limited to 'src/mame/machine/pcecommn.h')
-rw-r--r--src/mame/machine/pcecommn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/pcecommn.h b/src/mame/machine/pcecommn.h
index 4ec9bb07e64..089984f8c0b 100644
--- a/src/mame/machine/pcecommn.h
+++ b/src/mame/machine/pcecommn.h
@@ -27,7 +27,7 @@ struct pce_struct
UINT8 io_port_options; /*driver-specific options for the PCE*/
};
extern struct pce_struct pce;
-DRIVER_INIT( pce );
+void init_pce();
MACHINE_RESET( pce );
void pce_set_joystick_readinputport_callback( UINT8 (*joy_read)(running_machine &));