mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
Fixed maclc booting (nw)
This commit is contained in:
parent
e45771fc54
commit
4c579d7705
@ -155,6 +155,8 @@ void cuda_device::send_port(address_space &space, UINT8 offset, UINT8 data)
|
||||
printf("CU-> VIA_DATA: %d (PC=%x)\n", (data>>5)&1, m_maincpu->pc());
|
||||
#endif
|
||||
via_data = (data>>5) & 1;
|
||||
via6522_device *via1 = machine().device<via6522_device>("via6522_0");
|
||||
via1->write_cb2(via_data);
|
||||
}
|
||||
if (via_clock != ((data>>4)&1))
|
||||
{
|
||||
|
@ -153,6 +153,8 @@ void egret_device::send_port(address_space &space, UINT8 offset, UINT8 data)
|
||||
printf("EG-> VIA_DATA: %d (PC=%x)\n", (data>>5)&1, m_maincpu->pc());
|
||||
#endif
|
||||
via_data = (data>>5) & 1;
|
||||
via6522_device *via1 = machine().device<via6522_device>("via6522_0");
|
||||
via1->write_cb2(via_data);
|
||||
}
|
||||
if (via_clock != ((data>>4)&1))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user