mirror of
https://github.com/holub/mame
synced 2025-06-02 02:49:44 +03:00
(MESS) Removed unnecessary includes. (nw)
This commit is contained in:
parent
b9a2b20e61
commit
1f6e54141b
@ -14,9 +14,6 @@
|
||||
#include "machine/pit8253.h"
|
||||
#include "machine/pic8259.h"
|
||||
#include "machine/i8251.h"
|
||||
#include "formats/hxcmfm_dsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "machine/ram.h"
|
||||
#include "includes/b2m.h"
|
||||
|
@ -62,12 +62,9 @@
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "cpu/z80/z80daisy.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "formats/hxcmfm_dsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "formats/dsk_dsk.h"
|
||||
#include "machine/ctronics.h"
|
||||
#include "machine/i8251.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "sound/ay8910.h"
|
||||
#include "video/mc6845.h"
|
||||
#include "rendlay.h"
|
||||
|
@ -100,9 +100,6 @@
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "machine/hd63450.h" // compatible with MC68450, which is what these really have
|
||||
#include "formats/esq16_dsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "formats/dfi_dsk.h"
|
||||
#include "formats/ipf_dsk.h"
|
||||
|
||||
#include "machine/esqvfd.h"
|
||||
|
||||
|
@ -26,9 +26,6 @@ X (. to escape)
|
||||
#include "emu.h"
|
||||
#include "cpu/m68000/m68000.h"
|
||||
#include "machine/68681.h"
|
||||
#include "formats/hxcmfm_dsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "machine/terminal.h"
|
||||
|
||||
|
@ -43,7 +43,6 @@ EI1 Vectored interrupt error
|
||||
#include "machine/i8255.h"
|
||||
#include "machine/pit8253.h"
|
||||
#include "machine/pic8259.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "formats/m20_dsk.h"
|
||||
|
||||
#include "machine/keyboard.h"
|
||||
@ -448,19 +447,6 @@ static const i8251_interface tty_i8251_intf =
|
||||
DEVCB_NULL // syndet
|
||||
};
|
||||
|
||||
static const floppy_interface m20_floppy_interface =
|
||||
{
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
FLOPPY_STANDARD_5_25_DSDD,
|
||||
LEGACY_FLOPPY_OPTIONS_NAME(m20),
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
static unsigned char kbxlat[] =
|
||||
{
|
||||
0x00, '\\', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
|
||||
@ -565,7 +551,6 @@ static MACHINE_CONFIG_START( m20, m20_state )
|
||||
MCFG_I8251_ADD("i8251_2", tty_i8251_intf)
|
||||
MCFG_PIT8253_ADD("pit8253", pit8253_intf)
|
||||
MCFG_PIC8259_ADD("i8259", pic_intf)
|
||||
MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(m20_floppy_interface)
|
||||
|
||||
MCFG_ASCII_KEYBOARD_ADD(KEYBOARD_TAG, keyboard_intf)
|
||||
MACHINE_CONFIG_END
|
||||
|
@ -47,9 +47,6 @@
|
||||
#include "machine/6522via.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "formats/esq8_dsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "formats/dfi_dsk.h"
|
||||
#include "formats/ipf_dsk.h"
|
||||
#include "sound/es5503.h"
|
||||
|
||||
#include "mirage.lh"
|
||||
|
@ -43,9 +43,7 @@
|
||||
/* devices */
|
||||
#include "imagedev/cassette.h"
|
||||
#include "formats/tzx_cas.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "formats/coupedsk.h"
|
||||
#include "formats/mfi_dsk.h"
|
||||
#include "machine/ram.h"
|
||||
|
||||
/***************************************************************************
|
||||
|
@ -8,7 +8,6 @@
|
||||
#include "cpu/m68000/m68000.h"
|
||||
#include "cpu/m6800/m6800.h"
|
||||
#include "imagedev/cartslot.h"
|
||||
#include "imagedev/floppy.h"
|
||||
#include "machine/ram.h"
|
||||
#include "machine/6850acia.h"
|
||||
#include "machine/8530scc.h"
|
||||
|
@ -9,7 +9,6 @@
|
||||
|
||||
#include "video/mc6845.h"
|
||||
#include "cpu/z80/z80daisy.h"
|
||||
#include "imagedev/floppy.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "machine/z80ctc.h"
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
#include "cpu/z80/z80daisy.h"
|
||||
#include "cpu/mcs48/mcs48.h"
|
||||
#include "cpu/m68000/m68000.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "machine/ctronics.h"
|
||||
#include "machine/pic8259.h"
|
||||
#include "machine/ram.h"
|
||||
|
@ -15,7 +15,6 @@
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/m6502/m6502.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "machine/6532riot.h"
|
||||
#include "machine/ieee488.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
|
@ -215,30 +215,12 @@ static const via6522_interface via_intf =
|
||||
};
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// floppy_interface e01_floppy_interface
|
||||
//-------------------------------------------------
|
||||
|
||||
static const floppy_interface e01_floppy_interface =
|
||||
{
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
DEVCB_NULL,
|
||||
FLOPPY_STANDARD_3_5_DSDD, // NEC FD1036 A
|
||||
LEGACY_FLOPPY_OPTIONS_NAME(default),
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// wd17xx_interface fdc_intf
|
||||
//-------------------------------------------------
|
||||
|
||||
static SLOT_INTERFACE_START( e01_floppies )
|
||||
SLOT_INTERFACE( "35dd", FLOPPY_35_DD )
|
||||
SLOT_INTERFACE( "35dd", FLOPPY_35_DD ) // NEC FD1036 A
|
||||
SLOT_INTERFACE_END
|
||||
|
||||
void e01_device::fdc_irq_w(bool state)
|
||||
|
@ -14,7 +14,6 @@
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/m6502/m65c02.h"
|
||||
#include "imagedev/flopdrv.h"
|
||||
#include "machine/6522via.h"
|
||||
#include "machine/ctronics.h"
|
||||
#include "machine/econet.h"
|
||||
|
Loading…
Reference in New Issue
Block a user