summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ldvp931.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/ldvp931.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/ldvp931.c')
-rw-r--r--src/emu/machine/ldvp931.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/ldvp931.c b/src/emu/machine/ldvp931.c
index 9d4fdd260b9..b63d127174f 100644
--- a/src/emu/machine/ldvp931.c
+++ b/src/emu/machine/ldvp931.c
@@ -155,8 +155,8 @@ const ldplayer_interface vp931_interface =
LASERDISC_TYPE_PHILLIPS_22VP931, /* type of the player */
sizeof(ldplayer_data), /* size of the state */
"Phillips 22VP931", /* name of the player */
- rom_vp931, /* pointer to ROM region information */
- machine_config_vp931, /* pointer to machine configuration */
+ ROM_NAME(vp931), /* pointer to ROM region information */
+ MACHINE_DRIVER_NAME(vp931), /* pointer to machine configuration */
vp931_init, /* initialization callback */
vp931_vsync, /* vsync callback */
vp931_update, /* update callback */