Fixed recent regression in e0c6200, nw

This commit is contained in:
mooglyguy 2018-12-16 11:27:29 +01:00
parent a5116d59f0
commit a0351149de

View File

@ -354,7 +354,9 @@ u8 e0c6s46_device::read_p(u8 port)
if (m_p_dir >> port & 1)
return m_port_p[port];
m_read_p[port](port, 0xff);
if (port < 4)
return m_read_p[port](port, 0xff);
return 0;
}