mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
am79c30.cpp: Fix build (nw)
This commit is contained in:
parent
aefdb21281
commit
0e1c4039e1
@ -988,7 +988,7 @@ void am79c30a_device::set_dmr4(u8 data)
|
||||
if ((data & 0x03) == 0)
|
||||
LOG("%s: Receiver threshold = 1 byte\n", machine().describe_context());
|
||||
else
|
||||
LOG("%s: Receiver threshold = %d/%d bytes\n", machine().describe_context(), 1 << (data & 0x03), std::min((data & 0x03) * 8 + 8, 30);
|
||||
LOG("%s: Receiver threshold = %d/%d bytes\n", machine().describe_context(), 1 << (data & 0x03), std::min((data & 0x03) * 8 + 8, 30));
|
||||
}
|
||||
if ((m_dmr4 & 0x0c) != (data & 0x0c))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user