mirror of
https://github.com/holub/mame
synced 2025-04-28 19:14:55 +03:00
wicat: Added floppy drive and attached software list (not working).
This commit is contained in:
parent
f777f15649
commit
c997828f7c
@ -277,6 +277,10 @@ static INPUT_PORTS_START( wicat )
|
|||||||
|
|
||||||
INPUT_PORTS_END
|
INPUT_PORTS_END
|
||||||
|
|
||||||
|
static SLOT_INTERFACE_START(wicat_floppies)
|
||||||
|
SLOT_INTERFACE("525qd", FLOPPY_525_QD)
|
||||||
|
SLOT_INTERFACE_END
|
||||||
|
|
||||||
void wicat_state::driver_start()
|
void wicat_state::driver_start()
|
||||||
{
|
{
|
||||||
m_video_timer = timer_alloc(VIDEO_TIMER);
|
m_video_timer = timer_alloc(VIDEO_TIMER);
|
||||||
@ -900,8 +904,16 @@ static MACHINE_CONFIG_START( wicat, wicat_state )
|
|||||||
MCFG_CPU_PROGRAM_MAP(wicat_wd1000_mem)
|
MCFG_CPU_PROGRAM_MAP(wicat_wd1000_mem)
|
||||||
MCFG_CPU_IO_MAP(wicat_wd1000_io)
|
MCFG_CPU_IO_MAP(wicat_wd1000_io)
|
||||||
MCFG_FD1795_ADD("fdc",XTAL_8MHz)
|
MCFG_FD1795_ADD("fdc",XTAL_8MHz)
|
||||||
|
MCFG_FLOPPY_DRIVE_ADD("fdc:0", wicat_floppies, "525qd", floppy_image_device::default_floppy_formats)
|
||||||
|
MCFG_FLOPPY_DRIVE_SOUND(true)
|
||||||
|
MCFG_FLOPPY_DRIVE_ADD("fdc:1", wicat_floppies, nullptr, floppy_image_device::default_floppy_formats)
|
||||||
|
MCFG_FLOPPY_DRIVE_SOUND(true)
|
||||||
|
MCFG_FLOPPY_DRIVE_ADD("fdc:2", wicat_floppies, nullptr, floppy_image_device::default_floppy_formats)
|
||||||
|
MCFG_FLOPPY_DRIVE_SOUND(true)
|
||||||
|
MCFG_FLOPPY_DRIVE_ADD("fdc:3", wicat_floppies, nullptr, floppy_image_device::default_floppy_formats)
|
||||||
|
MCFG_FLOPPY_DRIVE_SOUND(true)
|
||||||
|
|
||||||
|
MCFG_SOFTWARE_LIST_ADD("flop_list", "wicat")
|
||||||
MACHINE_CONFIG_END
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
/* ROM definition */
|
/* ROM definition */
|
||||||
|
Loading…
Reference in New Issue
Block a user