summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ldpr8210.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-05-26 04:35:01 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-05-26 04:35:01 +0000
commit996de3e466732c7d21ef27daa0c29266e9a61415 (patch)
treefa687afb6944b87829e6d9a8d6e60c63563bda79 /src/emu/machine/ldpr8210.c
parent2d0b375973e98d39817f776411778d5f5c750898 (diff)
Converted the Namco 50xx into a proper device.
Extended the Namco 60xx and namcoio_init() interfaces to accept a device name string in addition to an interface struct, until all the interfaces are replaced with devices. Added DERIVED_CLOCK() macro which can be used by sub-devices to derive their clock from the parent device. Tweaked some of the laserdisc interfaces to use ROM_NAME() and MACHINE_DRIVER_NAME() macros.
Diffstat (limited to 'src/emu/machine/ldpr8210.c')
-rw-r--r--src/emu/machine/ldpr8210.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/ldpr8210.c b/src/emu/machine/ldpr8210.c
index 8c6ed7c9f82..034bd5c0979 100644
--- a/src/emu/machine/ldpr8210.c
+++ b/src/emu/machine/ldpr8210.c
@@ -305,8 +305,8 @@ const ldplayer_interface pr8210_interface =
LASERDISC_TYPE_PIONEER_PR8210, /* type of the player */
sizeof(ldplayer_data), /* size of the state */
"Pioneer PR-8210", /* name of the player */
- rom_pr8210, /* pointer to ROM region information */
- machine_config_pr8210, /* pointer to machine configuration */
+ ROM_NAME(pr8210), /* pointer to ROM region information */
+ MACHINE_DRIVER_NAME(pr8210), /* pointer to machine configuration */
pr8210_init, /* initialization callback */
pr8210_vsync, /* vsync callback */
pr8210_update, /* update callback */
@@ -1025,8 +1025,8 @@ const ldplayer_interface simutrek_interface =
LASERDISC_TYPE_SIMUTREK_SPECIAL, /* type of the player */
sizeof(ldplayer_data), /* size of the state */
"Simutrek Modified PR-8210", /* name of the player */
- rom_simutrek, /* pointer to ROM region information */
- machine_config_simutrek, /* pointer to machine configuration */
+ ROM_NAME(simutrek), /* pointer to ROM region information */
+ MACHINE_DRIVER_NAME(simutrek), /* pointer to machine configuration */
simutrek_init, /* initialization callback */
simutrek_vsync, /* vsync callback */
simutrek_update, /* update callback */