summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2021-04-19 11:43:49 +0200
committer Olivier Galibert <galibert@pobox.com>2021-04-19 11:44:03 +0200
commit7dc0aab8dfd5326aba222bdc0746b3f84eb05be9 (patch)
tree7f04e2d9eaad907682af647e62ac9d203446e29c
parent5c4ee0ec5ccee303d6610ea17234817f93a9b54d (diff)
thomson,bm3: Correct compile errors due to incorrectly pushing a not entirely mature patch (but good enough for a start)
-rw-r--r--scripts/target/mame/mess.lua2
-rw-r--r--src/devices/bus/bml3/bml3mp1805.cpp8
-rw-r--r--src/devices/bus/nscsi/cdu75s.cpp3
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"