From 7dc0aab8dfd5326aba222bdc0746b3f84eb05be9 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Mon, 19 Apr 2021 11:43:49 +0200 Subject: thomson,bm3: Correct compile errors due to incorrectly pushing a not entirely mature patch (but good enough for a start) --- scripts/target/mame/mess.lua | 2 -- src/devices/bus/bml3/bml3mp1805.cpp | 8 ++++---- src/devices/bus/nscsi/cdu75s.cpp | 3 +++ 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index ebb81497aff..deff32dce56 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -3945,8 +3945,6 @@ files { MAME_DIR .. "src/mame/drivers/thomson.cpp", MAME_DIR .. "src/mame/includes/thomson.h", MAME_DIR .. "src/mame/machine/thomson.cpp", - MAME_DIR .. "src/mame/machine/thomflop.cpp", - MAME_DIR .. "src/mame/machine/thomflop.h", MAME_DIR .. "src/mame/video/thomson.cpp", } diff --git a/src/devices/bus/bml3/bml3mp1805.cpp b/src/devices/bus/bml3/bml3mp1805.cpp index 68f99d3edd7..663489f2cda 100644 --- a/src/devices/bus/bml3/bml3mp1805.cpp +++ b/src/devices/bus/bml3/bml3mp1805.cpp @@ -51,10 +51,10 @@ void bml3bus_mp1805_device::device_add_mconfig(machine_config &config) m_mc6843->force_ready(); m_mc6843->irq().set(FUNC(bml3bus_mp1805_device::nmi_w)); - FLOPPY_CONNECTOR(config, m_floppy[0], floppy_drives, "mb_6890", floppy_image_device::default_floppy_formats).enable_sound(true); - FLOPPY_CONNECTOR(config, m_floppy[1], floppy_drives, nullptr, floppy_image_device::default_floppy_formats).enable_sound(true); - FLOPPY_CONNECTOR(config, m_floppy[2], floppy_drives, nullptr, floppy_image_device::default_floppy_formats).enable_sound(true); - FLOPPY_CONNECTOR(config, m_floppy[3], floppy_drives, nullptr, floppy_image_device::default_floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, m_floppy[0], floppy_drives, "mb_6890", floppy_image_device::default_mfm_floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, m_floppy[1], floppy_drives, nullptr, floppy_image_device::default_mfm_floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, m_floppy[2], floppy_drives, nullptr, floppy_image_device::default_mfm_floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, m_floppy[3], floppy_drives, nullptr, floppy_image_device::default_mfm_floppy_formats).enable_sound(true); } //------------------------------------------------- diff --git a/src/devices/bus/nscsi/cdu75s.cpp b/src/devices/bus/nscsi/cdu75s.cpp index 03b13996913..a171489a74d 100644 --- a/src/devices/bus/nscsi/cdu75s.cpp +++ b/src/devices/bus/nscsi/cdu75s.cpp @@ -19,6 +19,9 @@ // - IC301: pcm-1715u - DAC // - IC401: BA6295AFP - 2 channel motor driver +// irq1 on CXD1808AQ +// irq3 on FAS204 + #include "emu.h" #include "cdu75s.h" -- cgit v1.2.3