mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
LDPLAYER: added cdrom interface (nw) still doesn't seem to work, i have no suitable software to test with, marked not working until someone verifies otherwise.(nw)
This commit is contained in:
parent
6276048f56
commit
7142ca143b
1 changed files with 9 additions and 2 deletions
|
@ -15,6 +15,7 @@
|
||||||
#include "machine/ldpr8210.h"
|
#include "machine/ldpr8210.h"
|
||||||
#include "machine/ldv1000.h"
|
#include "machine/ldv1000.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include "imagedev/chd_cd.h"
|
||||||
#include "ui/uimain.h"
|
#include "ui/uimain.h"
|
||||||
|
|
||||||
#include "pr8210.lh"
|
#include "pr8210.lh"
|
||||||
|
@ -626,6 +627,9 @@ static MACHINE_CONFIG_DERIVED_CLASS( ldv1000, ldplayer_ntsc, ldv1000_state )
|
||||||
MCFG_SOUND_MODIFY("laserdisc")
|
MCFG_SOUND_MODIFY("laserdisc")
|
||||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||||
|
|
||||||
|
MCFG_CDROM_ADD( "cdrom" )
|
||||||
|
MCFG_CDROM_INTERFACE("ld_cdrom")
|
||||||
MACHINE_CONFIG_END
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
|
|
||||||
|
@ -638,6 +642,9 @@ static MACHINE_CONFIG_DERIVED_CLASS( pr8210, ldplayer_ntsc, pr8210_state )
|
||||||
MCFG_SOUND_MODIFY("laserdisc")
|
MCFG_SOUND_MODIFY("laserdisc")
|
||||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||||
|
|
||||||
|
MCFG_CDROM_ADD( "cdrom" )
|
||||||
|
MCFG_CDROM_INTERFACE("ld_cdrom")
|
||||||
MACHINE_CONFIG_END
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
|
|
||||||
|
@ -665,5 +672,5 @@ ROM_END
|
||||||
*
|
*
|
||||||
*************************************/
|
*************************************/
|
||||||
|
|
||||||
GAME( 2008, simldv1000, 0, ldv1000, ldplayer, driver_device, 0, ROT0, "MAME", "Pioneer LDV-1000 Simulator", 0 )
|
GAME( 2008, simldv1000, 0, ldv1000, ldplayer, driver_device, 0, ROT0, "MAME", "Pioneer LDV-1000 Simulator", MACHINE_NOT_WORKING )
|
||||||
GAMEL(2008, simpr8210, 0, pr8210, ldplayer, driver_device, 0, ROT0, "MAME", "Pioneer PR-8210 Simulator", 0, layout_pr8210 )
|
GAMEL(2008, simpr8210, 0, pr8210, ldplayer, driver_device, 0, ROT0, "MAME", "Pioneer PR-8210 Simulator", MACHINE_NOT_WORKING, layout_pr8210 )
|
||||||
|
|
Loading…
Reference in a new issue