mirror of
https://github.com/holub/mame
synced 2025-06-17 01:38:59 +03:00
remove logerror spam (nw)
This commit is contained in:
parent
11ac7454db
commit
edc2024fc0
@ -477,9 +477,7 @@ void xavix2_state::pio_w(offs_t offset, u32 data, u32 mem_mask)
|
||||
|
||||
u32 xavix2_state::pio_r()
|
||||
{
|
||||
u32 data = (m_pio->read() & ~m_pio_mask_out) | (m_pio_dataw & m_pio_mask_out);
|
||||
logerror("%s: pio read %08x\n", machine().describe_context(), data);
|
||||
return data;
|
||||
return (m_pio->read() & ~m_pio_mask_out) | (m_pio_dataw & m_pio_mask_out);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user