diff options
| author | 2015-02-25 08:09:13 +0100 | |
|---|---|---|
| committer | 2015-02-25 08:09:13 +0100 | |
| commit | 6ae44e46f91aa2bd74d9895e6bfd345baebd3d22 (patch) | |
| tree | 70be3ad6f499bb138c0335e8d2d16790f6f971b3 /src/mess/machine/beta.c | |
| parent | 33c8d18d612786130c2baafd644604137f6f4ef8 (diff) | |
Cleanups and version bumpmame0159
Diffstat (limited to 'src/mess/machine/beta.c')
| -rw-r--r-- | src/mess/machine/beta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/beta.c b/src/mess/machine/beta.c index a77e2fec0b8..6fff0d7dba7 100644 --- a/src/mess/machine/beta.c +++ b/src/mess/machine/beta.c @@ -106,7 +106,7 @@ READ8_MEMBER(beta_disk_device::data_r) READ8_MEMBER(beta_disk_device::state_r) { if (m_betadisk_active==1) { - UINT8 result = 0x3F; // actually open bus + UINT8 result = 0x3F; // actually open bus result |= m_wd179x->drq_r() ? 0x40 : 0; result |= m_wd179x->intrq_r() ? 0x80 : 0; return result; @@ -181,7 +181,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_WD2793x_ADD("wd179x", XTAL_8MHz / 8) // KR1818VG93 clone of WD1793 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) |
