mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
(MESS) ql: Floppy WIP. (nw)
This commit is contained in:
parent
4dd095bfb5
commit
1427382078
@ -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));
|
||||
|
@ -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));
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user