(MESS) ql: Floppy WIP. (nw)

This commit is contained in:
Curt Coder 2014-06-04 12:34:08 +00:00
parent 4dd095bfb5
commit 1427382078
3 changed files with 3 additions and 3 deletions

View File

@ -250,7 +250,7 @@ void sandy_super_disk_t::write(address_space &space, offs_t offset, UINT8 data)
if (floppy)
{
floppy->ss_w(BIT(data, 0));
floppy->mon_w(BIT(data, 3));
floppy->mon_w(!BIT(data, 3));
}
m_fdc->dden_w(BIT(data, 4));

View File

@ -318,7 +318,7 @@ void sandy_superqboard_t::write(address_space &space, offs_t offset, UINT8 data)
if (floppy)
{
floppy->ss_w(BIT(data, 0));
floppy->mon_w(BIT(data, 3));
floppy->mon_w(!BIT(data, 3));
}
m_fdc->dden_w(BIT(data, 4));

View File

@ -282,7 +282,7 @@ void ql_trump_card_t::write(address_space &space, offs_t offset, UINT8 data)
if (floppy)
{
floppy->ss_w(BIT(data, 3));
floppy->mon_w(BIT(data, 2));
floppy->mon_w(!BIT(data, 2));
}
}