summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2012-12-28 11:58:33 +0000
committer Olivier Galibert <galibert@pobox.com>2012-12-28 11:58:33 +0000
commit28b9ef0a6d46ed074f85673d1f5d3d783fb8cc8b (patch)
tree28df440f97b995f984aa5491e0705a1810541db8 /src
parentc88ba96850052446e3ee83e5edbc56a5946b01e3 (diff)
misc abc fixes (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mess/machine/abc_hdc.h2
-rw-r--r--src/mess/machine/abc_xebec.h2
-rw-r--r--src/mess/machine/lux10828.c14
3 files changed, 9 insertions, 9 deletions
diff --git a/src/mess/machine/abc_hdc.h b/src/mess/machine/abc_hdc.h
index 0cf6b85d592..df3c86397c0 100644
--- a/src/mess/machine/abc_hdc.h
+++ b/src/mess/machine/abc_hdc.h
@@ -51,7 +51,7 @@ protected:
private:
required_device<cpu_device> m_maincpu;
- required_device<scsicb_device> m_sasibus;
+ required_device<scsibus_device> m_sasibus;
};
diff --git a/src/mess/machine/abc_xebec.h b/src/mess/machine/abc_xebec.h
index 2ad2349e91c..58ec0104007 100644
--- a/src/mess/machine/abc_xebec.h
+++ b/src/mess/machine/abc_xebec.h
@@ -51,7 +51,7 @@ protected:
private:
required_device<cpu_device> m_maincpu;
- required_device<scsicb_device> m_sasibus;
+ required_device<scsibus_device> m_sasibus;
};
diff --git a/src/mess/machine/lux10828.c b/src/mess/machine/lux10828.c
index 97d1c825390..1bab05bc5dc 100644
--- a/src/mess/machine/lux10828.c
+++ b/src/mess/machine/lux10828.c
@@ -131,7 +131,7 @@ Notes:
#define Z80_TAG "5a"
#define Z80PIO_TAG "3a"
-#define FD1791_TAG "7a"
+#define MB8876_TAG "7a"
@@ -346,10 +346,10 @@ static MACHINE_CONFIG_FRAGMENT( luxor_55_10828 )
MCFG_CPU_CONFIG(daisy_chain)
MCFG_Z80PIO_ADD(Z80PIO_TAG, XTAL_4MHz/2, pio_intf)
- MCFG_FD1791x_ADD(FD1791_TAG, XTAL_4MHz/2)
+ MCFG_MB8876x_ADD(MB8876_TAG, XTAL_4MHz/2)
- MCFG_FLOPPY_DRIVE_ADD(FD1791_TAG":0", abc_floppies, "525dd", NULL, floppy_image_device::default_floppy_formats)
- MCFG_FLOPPY_DRIVE_ADD(FD1791_TAG":1", abc_floppies, "525dd", NULL, floppy_image_device::default_floppy_formats)
+ MCFG_FLOPPY_DRIVE_ADD(MB8876_TAG":0", abc_floppies, "525dd", NULL, floppy_image_device::default_floppy_formats)
+ MCFG_FLOPPY_DRIVE_ADD(MB8876_TAG":1", abc_floppies, "525dd", NULL, floppy_image_device::default_floppy_formats)
MACHINE_CONFIG_END
@@ -414,9 +414,9 @@ luxor_55_10828_device::luxor_55_10828_device(const machine_config &mconfig, cons
device_abcbus_card_interface(mconfig, *this),
m_maincpu(*this, Z80_TAG),
m_pio(*this, Z80PIO_TAG),
- m_fdc(*this, FD1791_TAG),
- m_floppy0(*this, FD1791_TAG":0"),
- m_floppy1(*this, FD1791_TAG":1"),
+ m_fdc(*this, MB8876_TAG),
+ m_floppy0(*this, MB8876_TAG":0"),
+ m_floppy1(*this, MB8876_TAG":1"),
m_sw1(*this, "SW1"),
m_s1(*this, "S1"),
m_cs(false),