mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Fixed commodore LCD loading from 1541/1571, loading and saving to 1581. [smf]
This commit is contained in:
parent
5d0a5ab5f2
commit
32d5d90797
@ -411,12 +411,13 @@ public:
|
||||
|
||||
void via0_pb_w(uint8_t data)
|
||||
{
|
||||
write_key_poll(BIT(data, 0));
|
||||
m_rtc->cs2_w(BIT(data, 1));
|
||||
m_iec->host_atn_w(!BIT(data, 3));
|
||||
m_iec->host_clk_w(!BIT(data, 4));
|
||||
m_iec->host_data_w(!BIT(data, 5));
|
||||
|
||||
write_key_poll((data >> 0) & 1);
|
||||
m_rtc->cs2_w((data >> 1) & 1);
|
||||
machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(2000));
|
||||
}
|
||||
|
||||
WRITE_LINE_MEMBER(write_key_poll)
|
||||
|
Loading…
Reference in New Issue
Block a user