diff options
author | 2015-05-31 23:03:24 +0300 | |
---|---|---|
committer | 2015-05-31 23:03:24 +0300 | |
commit | 9f74d5fd7b4fc584961a7d816b0db2e233fa085a (patch) | |
tree | f344807cf0f2b5f9677677657cf54653c4ea58e3 /src/mess/machine | |
parent | 14a019da2027e07be1fd06555bb6fbe11eabf3c7 (diff) |
wd_fdc: separate soviet FD179x clone
Diffstat (limited to 'src/mess/machine')
-rw-r--r-- | src/mess/machine/beta.c | 2 | ||||
-rw-r--r-- | src/mess/machine/beta.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/beta.c b/src/mess/machine/beta.c index e671e67c89a..6774281e26a 100644 --- a/src/mess/machine/beta.c +++ b/src/mess/machine/beta.c @@ -182,7 +182,7 @@ static SLOT_INTERFACE_START( beta_disk_floppies ) SLOT_INTERFACE_END static MACHINE_CONFIG_FRAGMENT( beta_disk ) - MCFG_WD2793x_ADD("wd179x", XTAL_8MHz / 8) // KR1818VG93 clone of WD1793 + MCFG_KR1818VG93x_ADD("wd179x", XTAL_8MHz / 8) MCFG_FLOPPY_DRIVE_ADD("wd179x:0", beta_disk_floppies, "drive0", beta_disk_device::floppy_formats) MCFG_FLOPPY_DRIVE_ADD("wd179x:1", beta_disk_floppies, "drive1", beta_disk_device::floppy_formats) MCFG_FLOPPY_DRIVE_ADD("wd179x:2", beta_disk_floppies, "drive2", beta_disk_device::floppy_formats) diff --git a/src/mess/machine/beta.h b/src/mess/machine/beta.h index c082819149e..4afe62c771c 100644 --- a/src/mess/machine/beta.h +++ b/src/mess/machine/beta.h @@ -50,7 +50,7 @@ protected: virtual machine_config_constructor device_mconfig_additions() const; private: - required_device<wd2793_t> m_wd179x; + required_device<kr1818vg93_t> m_wd179x; required_device<floppy_connector> m_floppy0; required_device<floppy_connector> m_floppy1; required_device<floppy_connector> m_floppy2; |