Formats-related #include cleanup

Note that IMD is one of the default MFM formats, so there is no need to add it explicitly.
This commit is contained in:
AJR 2023-10-08 08:32:09 -04:00
parent 0e5ac33054
commit db48a71d4f
60 changed files with 25 additions and 143 deletions

View File

@ -15,7 +15,6 @@
#include "a2bus.h"
#include "machine/wd_fdc.h"
#include "formats/imd_dsk.h"
#include "imagedev/floppy.h"
//**************************************************************************

View File

@ -16,7 +16,6 @@
#include "a2bus.h"
#include "imagedev/floppy.h"
#include "machine/upd765.h"
#include "formats/imd_dsk.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -10,6 +10,9 @@
#include "emu.h"
#include "acorn.h"
#include "formats/acorn_dsk.h"
#include "formats/fsd_dsk.h"
//**************************************************************************
// DEVICE DEFINITIONS

View File

@ -16,9 +16,6 @@
#include "imagedev/floppy.h"
#include "machine/i8271.h"
#include "machine/wd_fdc.h"
#include "formats/acorn_dsk.h"
#include "formats/fsd_dsk.h"
#include "formats/pc_dsk.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -9,7 +9,6 @@
#include "emu.h"
#include "fdc.h"
#include "machine/busmouse.h"
#include "formats/pc_dsk.h"
#include "formats/naslite_dsk.h"
#include "formats/ibmxdf_dsk.h"

View File

@ -10,7 +10,6 @@
#include "mc1502_fdc.h"
#include "cpu/i86/i86.h"
#include "formats/pc_dsk.h"
//**************************************************************************

View File

@ -18,7 +18,6 @@
#include "mufdc.h"
#include "formats/naslite_dsk.h"
#include "formats/pc_dsk.h"
//**************************************************************************

View File

@ -24,8 +24,6 @@
#include "emu.h"
#include "myb3k_fdc.h"
#include "formats/pc_dsk.h"
#include "formats/imd_dsk.h"
#define LOG_READ (1U << 1)
#define LOG_CMD (1U << 2)

View File

@ -13,7 +13,6 @@
#include "isa.h"
#include "imagedev/floppy.h"
#include "machine/wd_fdc.h"
#include "formats/imd_dsk.h"
class isa8_myb3k_fdc471x_device_base :
public device_t,

View File

@ -16,7 +16,6 @@
#include "omti8621.h"
#include "image.h"
#include "imagedev/harddriv.h"
#include "formats/pc_dsk.h"
#include "formats/naslite_dsk.h"
#include "formats/apollo_dsk.h"

View File

@ -10,7 +10,6 @@
#include "p1_fdc.h"
#include "cpu/i86/i86.h"
#include "formats/pc_dsk.h"
//**************************************************************************

View File

@ -9,6 +9,8 @@
#include "emu.h"
#include "isbc_218a.h"
#include "formats/flopimg.h"
//**************************************************************************
// MACROS / CONSTANTS

View File

@ -12,7 +12,6 @@
#pragma once
#include "isbx.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "machine/upd765.h"

View File

@ -11,8 +11,6 @@
#include "machine/upd765.h"
#include "imagedev/floppy.h"
#include "formats/imd_dsk.h"
#include "formats/pc_dsk.h"
namespace {
@ -91,21 +89,14 @@ static void rc2014_floppies(device_slot_interface &device)
device.option_add("35hd", FLOPPY_35_HD);
}
static void rc2014_floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
fr.add(FLOPPY_PC_FORMAT);
}
void rc2014_fdc9266_device::device_add_mconfig(machine_config &config)
{
// FDC9266
UPD765A(config, m_fdc, XTAL(8'000'000), true, true);
// floppy drives
FLOPPY_CONNECTOR(config, m_floppy[0], rc2014_floppies, "35hd", rc2014_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], rc2014_floppies, "35hd", rc2014_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[0], rc2014_floppies, "35hd", floppy_image_device::default_pc_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], rc2014_floppies, "35hd", floppy_image_device::default_pc_floppy_formats);
}
static INPUT_PORTS_START( rc2014_fdc9266_jumpers )
@ -202,8 +193,8 @@ void rc2014_wd37c65_device::device_add_mconfig(machine_config &config)
WD37C65C(config, m_fdc, 16_MHz_XTAL);
// floppy drives
FLOPPY_CONNECTOR(config, m_floppy[0], rc2014_floppies, "35hd", rc2014_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], rc2014_floppies, "35hd", rc2014_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[0], rc2014_floppies, "35hd", floppy_image_device::default_pc_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], rc2014_floppies, "35hd", floppy_image_device::default_pc_floppy_formats);
}
static INPUT_PORTS_START( rc2014_wd37c65_jumpers )

View File

@ -19,8 +19,6 @@
#include "imagedev/floppy.h"
#include "machine/upd765.h"
#include "formats/pc_dsk.h"
DEFINE_DEVICE_TYPE(SNS_PRO_FIGHTER_Q, sns_pro_fighter_q_device, "profighterq", "Super Pro. Fighter Q (variant 1)");
DEFINE_DEVICE_TYPE(SNS_PRO_FIGHTER_QA, sns_pro_fighter_qa_device, "profighterqa", "Super Pro. Fighter Q (variant 2)");

View File

@ -17,7 +17,6 @@
#include "machine/wd_fdc.h"
#include "machine/upd765.h"
#include "machine/i8255.h"
#include "formats/pc_dsk.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -150,7 +150,6 @@
#include "machine/wd_fdc.h"
#include "machine/hd63450.h" // compatible with MC68450
#include "machine/clock.h"
#include "formats/pc_dsk.h"
#define VERBOSE (0) // (LOG_GENERAL)
//#define LOG_OUTPUT_FUNC osd_printf_info

View File

@ -6,7 +6,6 @@
#include "formats/ap2_dsk.h"
#include "formats/ap_dsk35.h"
#include "formats/as_dsk.h"
#include "formats/pc_dsk.h"
#include "formats/fs_prodos.h"
void applefdintf_device::formats_525_13(format_registration &fr)

View File

@ -16,7 +16,6 @@ SMSC FDC37C665GT High Performance Multi-Mode Parallel Port Super I/O Floppy Disk
// floppy disk controller
#include "machine/upd765.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
// parallel port
#include "machine/pc_lpt.h"
// serial port

View File

@ -12,7 +12,6 @@ SMSC FDC37C93x Plug and Play Compatible Ultra I/O Controller
#include "machine/fdc37c93x.h"
#include "formats/naslite_dsk.h"
#include "formats/pc_dsk.h"
DEFINE_DEVICE_TYPE(FDC37C93X, fdc37c93x_device, "fdc37c93x", "SMSC FDC37C93X Super I/O")

View File

@ -14,7 +14,6 @@
#include "cpu/z80/z80.h"
#include "machine/upd765.h"
#include "machine/am9517a.h"
#include "formats/pc_dsk.h"
#include "machine/hdc92x4.h"
#include "imagedev/mfmhd.h"

View File

@ -143,7 +143,6 @@
#include "formats/acorn_dsk.h"
#include "formats/apd_dsk.h"
#include "formats/jfd_dsk.h"
#include "formats/pc_dsk.h"
#include "formats/st_dsk.h"
#include "screen.h"
#include "softlist.h"

View File

@ -9,7 +9,6 @@
#include "bus/rs232/rs232.h"
#include "machine/ncr5380.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "formats/naslite_dsk.h"

View File

@ -21,7 +21,6 @@
#include "bus/pc_kbd/pc_kbdc.h"
#include "bus/rs232/rs232.h"
#include "cpu/nec/v5x.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "machine/ins8250.h"
#include "machine/ncr5380.h"

View File

@ -62,8 +62,6 @@
#include "screen.h"
#include "speaker.h"
#include "formats/pc_dsk.h"
#define LOG_DEBUG (1U << 1)
#define LOG_IRQ (1U << 2)

View File

@ -25,8 +25,6 @@
#include "sound/spkrdev.h"
#include "ams40041.h"
#include "formats/pc_dsk.h"
#define I8086_TAG "ic120"
#define I8087_TAG "ic119"
#define I8048_TAG "i8048"

View File

@ -18,7 +18,6 @@
#include "machine/ins8250.h" /* pc com port */
#include "sound/beep.h" /* pcw/pcw16 beeper */
#include "machine/intelfsh.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "machine/ram.h"
#include "machine/timer.h"

View File

@ -26,7 +26,6 @@
/* Devices */
#include "bus/scsi/scsicd.h"
#include "bus/scsi/scsihd.h"
#include "formats/pc_dsk.h"
#include "machine/8042kbdc.h"
uint8_t bebox_state::at_dma8237_1_r(offs_t offset) { return m_dma8237[1]->read(offset / 2); }

View File

@ -32,7 +32,6 @@
#include "bus/rs232/rs232.h"
#include "imagedev/harddriv.h"
#include "imagedev/floppy.h"
#include "formats/imd_dsk.h"
// video
#include "screen.h"

View File

@ -330,7 +330,6 @@ W17 pulls J1 serial port pin 1 to GND when set (chassis to logical GND).
#include "machine/wd_fdc.h"
#include "formats/rx50_dsk.h"
#include "formats/pc_dsk.h" // PC Formats
#include "imagedev/floppy.h"
#include "imagedev/harddriv.h"

View File

@ -30,7 +30,6 @@
#include "bus/rs232/terminal.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
// video
#include "video/hd44780.h"

View File

@ -70,8 +70,6 @@
#include "sound/spkrdev.h"
#include "speaker.h"
#include "imagedev/floppy.h"
#include "formats/imd_dsk.h"
#include "formats/pc_dsk.h"
#include "bus/rs232/rs232.h"
#define LOG_PPI (1U << 1)

View File

@ -103,15 +103,12 @@
#include "machine/input_merger.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#define LOG_KLS (1U << 1)
//#define VERBOSE (LOG_GENERAL|LOG_KLS)
#include "logmacro.h"
#include "debugger.h"
#include "rtpc.lh"
namespace {

View File

@ -6,7 +6,7 @@
#include "emu.h"
#include "isbc_208.h"
#include "formats/pc_dsk.h"
#include "formats/flopimg.h"
DEFINE_DEVICE_TYPE(ISBC_208, isbc_208_device, "isbc_208", "ISBC 208 Flexible Disk Driver Controller")

View File

@ -255,7 +255,6 @@
#include "bus/interpro/keyboard/keyboard.h"
#include "bus/interpro/mouse/mouse.h"
#include "formats/pc_dsk.h"
#include "softlist.h"
#include "machine/input_merger.h"

View File

@ -37,7 +37,6 @@
#include "bus/rs232/rs232.h"
#include "imagedev/floppy.h"
#include "formats/applix_dsk.h"
#include "formats/pc_dsk.h"
// video
#include "screen.h"

View File

@ -91,11 +91,8 @@
#include "bus/pc_kbd/keyboards.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "softlist.h"
#include "debugger.h"
#include "jazz.lh"
#define VERBOSE 0

View File

@ -238,12 +238,8 @@
#include "sound/spkrdev.h"
#include "speaker.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "debugger.h"
#define LOG_MMU (1U << 1)
#define LOG_IOCB (1U << 2)

View File

@ -33,8 +33,7 @@
#include "screen.h"
#include "softlist.h"
#include "formats/mfi_dsk.h"
#include "formats/pc_dsk.h"
#include "formats/flopimg.h"
uint32_t next_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)

View File

@ -57,7 +57,6 @@ E I1 Vectored interrupt error
#include "softlist_dev.h"
#include "formats/m20_dsk.h"
#include "formats/pc_dsk.h"
namespace {

View File

@ -37,7 +37,6 @@
#include "sound/spkrdev.h"
#include "speaker.h"
#include "formats/pc_dsk.h"
#include "formats/naslite_dsk.h"
#include "formats/m20_dsk.h"

View File

@ -38,7 +38,6 @@ The keyboard has a sticker that proclaims it was made by Fujitsu Limited.
#include "bus/rs232/keyboard.h"
#include "emupal.h"
#include "screen.h"
#include "formats/imd_dsk.h"
namespace {
@ -91,7 +90,6 @@ private:
void hrq_w(int state);
uint8_t memory_read_byte(offs_t offset);
void memory_write_byte(offs_t offset, uint8_t data);
static void floppy_formats(format_registration &fr);
void floppy_load(floppy_image_device *dev);
void floppy_unload(floppy_image_device *dev);
@ -251,12 +249,6 @@ static void peoplepc_floppies(device_slot_interface &device)
device.option_add("525qd", FLOPPY_525_QD);
}
void peoplepc_state::floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
}
void peoplepc_keyboard_devices(device_slot_interface &device)
{
device.option_add("keyboard", SERIAL_KEYBOARD);
@ -322,8 +314,8 @@ void peoplepc_state::olypeopl(machine_config &config)
UPD765A(config, m_fdc, XTAL(8'000'000)/2, true, true);
m_fdc->intrq_wr_callback().set("pic8259_0", FUNC(pic8259_device::ir2_w));
m_fdc->drq_wr_callback().set(m_dmac, FUNC(i8257_device::dreq0_w));
FLOPPY_CONNECTOR(config, "upd765:0", peoplepc_floppies, "525qd", peoplepc_state::floppy_formats);
FLOPPY_CONNECTOR(config, "upd765:1", peoplepc_floppies, "525qd", peoplepc_state::floppy_formats);
FLOPPY_CONNECTOR(config, "upd765:0", peoplepc_floppies, "525qd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, "upd765:1", peoplepc_floppies, "525qd", floppy_image_device::default_mfm_floppy_formats);
I8251(config, m_8251key, XTAL(14'745'600)/6);
m_8251key->rxrdy_handler().set("pic8259_1", FUNC(pic8259_device::ir1_w));

View File

@ -36,6 +36,8 @@
#include "bus/isa/isa.h"
#include "video/virge_pci.h"
#include "formats/naslite_dsk.h"
#if 1
// for now let's use this as the contents of the spd chip in the ddr dimm memory module

View File

@ -15,9 +15,6 @@
#include "machine/pci.h"
#include "machine/upd765.h"
#include "formats/naslite_dsk.h"
#include "formats/pc_dsk.h"
// NVIDIA Corporation nForce CPU bridge

View File

@ -25,8 +25,6 @@
#include "softlist.h"
#include "speaker.h"
#include "formats/pc_dsk.h"
static void rmnimbus_floppies(device_slot_interface &device)
{

View File

@ -28,8 +28,6 @@
#include "emupal.h"
#include "formats/pc_dsk.h"
#define MAINCPU_TAG "maincpu"

View File

@ -11,7 +11,6 @@
#include "emu.h"
#include "cpu/z180/z180.h"
#include "imagedev/floppy.h"
#include "formats/imd_dsk.h"
#include "formats/tim011_dsk.h"
#include "machine/upd765.h"
#include "bus/rs232/rs232.h"
@ -135,7 +134,6 @@ static void tim011_floppies(device_slot_interface &device)
static void tim011_floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
fr.add(FLOPPY_TIM011_FORMAT);
}

View File

@ -27,8 +27,6 @@
#include "speaker.h"
#include "formats/pc_dsk.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -544,8 +544,6 @@ the keypad symbols seem to use a different matrix pattern from the rest?
#include "screen.h"
#include "formats/imd_dsk.h"
namespace {
@ -592,8 +590,6 @@ private:
required_shared_ptr<uint8_t> m_shared;
required_memory_region m_chargen;
static void floppy_formats(format_registration &fr);
uint8_t memory_read_byte(offs_t offset);
void memory_write_byte(offs_t offset, uint8_t data);
uint8_t shared_r(offs_t offset);
@ -941,12 +937,6 @@ static void fanuc_floppies(device_slot_interface &device)
device.option_add("525dd", FLOPPY_525_DD);
}
void fanucspmg_state::floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
}
void fanucspmg_state::fanucspmg(machine_config &config)
{
/* basic machine hardware */
@ -1000,8 +990,8 @@ void fanucspmg_state::fanucspmg(machine_config &config)
UPD765A(config, m_fdc, 8'000'000, true, true);
m_fdc->intrq_wr_callback().set(m_pic[0], FUNC(pic8259_device::ir3_w));
m_fdc->drq_wr_callback().set(m_dmac, FUNC(i8257_device::dreq0_w));
FLOPPY_CONNECTOR(config, FDC_TAG":0", fanuc_floppies, "525dd", fanucspmg_state::floppy_formats);
FLOPPY_CONNECTOR(config, FDC_TAG":1", fanuc_floppies, "525dd", fanucspmg_state::floppy_formats);
FLOPPY_CONNECTOR(config, FDC_TAG":0", fanuc_floppies, "525dd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, FDC_TAG":1", fanuc_floppies, "525dd", floppy_image_device::default_mfm_floppy_formats);
screen_device &screen(SCREEN(config, SCREEN_TAG, SCREEN_TYPE_RASTER));
screen.set_raw(XTAL(15'000'000), 640, 0, 512, 390, 0, 384);

View File

@ -6,7 +6,6 @@
#include "cpu/mcs48/mcs48.h"
#include "imagedev/floppy.h"
#include "machine/upd765.h"
#include "formats/pc_dsk.h"
#include "sound/dac.h"
#include "machine/ins8250.h"
#include "bus/rs232/rs232.h"

View File

@ -77,8 +77,6 @@ TODO: 68230 device
#include "softlist.h"
#include "speaker.h"
#include "formats/imd_dsk.h"
namespace {
@ -131,8 +129,6 @@ private:
void keyboard_clock_w(int state);
void keyboard_data_w(int state);
static void floppy_formats(format_registration &fr);
void pt68k2_mem(address_map &map);
void pt68k4_mem(address_map &map);
@ -158,12 +154,6 @@ private:
bool m_irq5_duart1 = false, m_irq5_isa = false;
};
void pt68k4_state::floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
}
static void pt68k_floppies(device_slot_interface &device)
{
device.option_add("525dd", FLOPPY_525_DD);
@ -430,8 +420,8 @@ void pt68k4_state::pt68k2(machine_config &config)
M48T02(config, TIMEKEEPER_TAG, 0);
WD1772(config, m_wdfdc, 16_MHz_XTAL / 2);
FLOPPY_CONNECTOR(config, m_floppy_connector[0], pt68k_floppies, "525dd", pt68k4_state::floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy_connector[1], pt68k_floppies, "525dd", pt68k4_state::floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy_connector[0], pt68k_floppies, "525dd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy_connector[1], pt68k_floppies, "525dd", floppy_image_device::default_mfm_floppy_formats);
ISA8(config, m_isa, 0);
m_isa->set_custom_spaces();

View File

@ -9,7 +9,6 @@
#include "emu.h"
#include "cpu/z180/z180.h"
#include "imagedev/floppy.h"
#include "formats/imd_dsk.h"
#include "machine/upd765.h"
#include "bus/rs232/rs232.h"
@ -76,12 +75,6 @@ static void sb180_floppies(device_slot_interface &device)
device.option_add("35dd", FLOPPY_35_DD);
}
static void sb180_floppy_formats(format_registration &fr)
{
fr.add_mfm_containers();
fr.add(FLOPPY_IMD_FORMAT);
}
static DEVICE_INPUT_DEFAULTS_START( terminal )
DEVICE_INPUT_DEFAULTS( "RS232_RXBAUD", 0xff, RS232_BAUD_9600 )
DEVICE_INPUT_DEFAULTS( "RS232_TXBAUD", 0xff, RS232_BAUD_9600 )
@ -105,10 +98,10 @@ void sb180_state::sb180(machine_config &config)
m_fdc->drq_wr_callback().set_inputline(m_maincpu, Z180_INPUT_LINE_DREQ1);
/* floppy drives */
FLOPPY_CONNECTOR(config, m_floppy[0], sb180_floppies, "35dd", sb180_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], sb180_floppies, "35dd", sb180_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[2], sb180_floppies, "35dd", sb180_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[3], sb180_floppies, "35dd", sb180_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[0], sb180_floppies, "35dd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[1], sb180_floppies, "35dd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[2], sb180_floppies, "35dd", floppy_image_device::default_mfm_floppy_formats);
FLOPPY_CONNECTOR(config, m_floppy[3], sb180_floppies, "35dd", floppy_image_device::default_mfm_floppy_formats);
rs232_port_device &rs232(RS232_PORT(config, "rs232", default_rs232_devices, "terminal"));
rs232.set_option_device_input_defaults("terminal", DEVICE_INPUT_DEFAULTS_NAME(terminal)); // must be below the DEVICE_INPUT_DEFAULTS_START block

View File

@ -42,9 +42,6 @@
#include "machine/input_merger.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "debugger.h"
#define VERBOSE 1
#include "logmacro.h"

View File

@ -40,9 +40,6 @@
#include "machine/input_merger.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "debugger.h"
#define VERBOSE 0
#include "logmacro.h"

View File

@ -48,9 +48,6 @@
#include "bus/rs232/rs232.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "debugger.h"
#define VERBOSE 0
#include "logmacro.h"

View File

@ -108,8 +108,6 @@
#include "machine/upd765.h"
#include "machine/z80scc.h"
#include "formats/pc_dsk.h"
#define LOG_INTERRUPT (1U << 1)
#define LOG_ALL_INTERRUPT (1U << 2)
#define LOG_LED (1U << 3)

View File

@ -131,8 +131,6 @@
#include "bus/nscsi/cd.h"
#include "bus/nscsi/hd.h"
#include "cpu/m68000/m68030.h"
#include "formats/mfi_dsk.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "machine/icm7170.h"
#include "machine/ncr53c90.h"
@ -147,6 +145,8 @@
#include "screen.h"
#include "formats/flopimg.h"
namespace {

View File

@ -435,9 +435,6 @@
#include "debugger.h"
#include "screen.h"
#include "formats/mfi_dsk.h"
#include "formats/pc_dsk.h"
#define LOG_AUXIO (1U << 1)
#define LOG_IRQ_READS (1U << 2)
#define LOG_IRQ_WRITES (1U << 3)

View File

@ -29,9 +29,6 @@
#include "cpu/z80/z80.h"
#include "imagedev/cassette.h"
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
#include "formats/dsk_dsk.h"
#include "formats/td0_dsk.h"
#include "machine/clock.h"
#include "machine/i8251.h"
#include "machine/ram.h"

View File

@ -25,7 +25,6 @@
#include "bus/rs232/rs232.h"
#include "bus/wangpc/wangpc.h"
#include "cpu/i86/i86.h"
#include "formats/pc_dsk.h"
#include "imagedev/floppy.h"
#include "machine/am9517a.h"
#include "machine/i8255.h"