diff options
author | 2012-11-22 19:33:19 +0000 | |
---|---|---|
committer | 2012-11-22 19:33:19 +0000 | |
commit | 9046ce0dc516d3a8b947deaa67448068c198eb45 (patch) | |
tree | 0f3c1a6ba191584dfd05631c95c6a4d978d37fd4 /src/mess/drivers/pc8801.c | |
parent | 20f0cd1a58cfeff8d49437b9c34a344732939706 (diff) |
sed1310: Cleanup. (nw)
(MESS) bw2: Fixed memory mapping. (nw)
(MESS) msm6255: Refactored to use device_memory_interface. (nw)
(MESS) floppy: Added macros for declaring modern floppy formats. The generic floppy formats (D88/DFI/IMD/IPF/MFI/MFM) are now automatically supported in each driver using the modern floppy code. [Curt Coder]
Diffstat (limited to 'src/mess/drivers/pc8801.c')
-rw-r--r-- | src/mess/drivers/pc8801.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/mess/drivers/pc8801.c b/src/mess/drivers/pc8801.c index 510e2912a7d..b0563bd104c 100644 --- a/src/mess/drivers/pc8801.c +++ b/src/mess/drivers/pc8801.c @@ -2271,13 +2271,6 @@ static UPD1990A_INTERFACE( pc8801_upd1990a_intf ) /* Floppy Configuration */ - -static const floppy_format_type pc88_floppy_formats[] = { - FLOPPY_D88_FORMAT, - FLOPPY_MFI_FORMAT, - NULL -}; - static SLOT_INTERFACE_START( pc88_floppies ) SLOT_INTERFACE( "525hd", FLOPPY_525_HD ) SLOT_INTERFACE_END @@ -2702,8 +2695,8 @@ static MACHINE_CONFIG_START( pc8801, pc8801_state ) MCFG_I8251_ADD(I8251_TAG, uart_intf) - MCFG_FLOPPY_DRIVE_ADD("upd765:0", pc88_floppies, "525hd", 0, pc88_floppy_formats) - MCFG_FLOPPY_DRIVE_ADD("upd765:1", pc88_floppies, "525hd", 0, pc88_floppy_formats) + MCFG_FLOPPY_DRIVE_ADD("upd765:0", pc88_floppies, "525hd", 0, floppy_image_device::default_floppy_formats) + MCFG_FLOPPY_DRIVE_ADD("upd765:1", pc88_floppies, "525hd", 0, floppy_image_device::default_floppy_formats) MCFG_SOFTWARE_LIST_ADD("disk_list","pc8801_flop") /* video hardware */ |