mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
apple: Stop logging every byte written via SCSI (#11444)
This commit is contained in:
parent
a4e202ae77
commit
7d50cecddb
@ -263,7 +263,7 @@ void mac_scsi_helper_device::write_wrapper(bool pseudo_dma, offs_t offset, u8 da
|
||||
{
|
||||
m_write_fifo_data = (m_write_fifo_data << 8) | data;
|
||||
++m_write_fifo_bytes;
|
||||
logerror("%s: CPU writing byte %02X into FIFO (%d/4 filled)\n", machine().describe_context(), data, m_write_fifo_bytes);
|
||||
LOG("%s: CPU writing byte %02X into FIFO (%d/4 filled)\n", machine().describe_context(), data, m_write_fifo_bytes);
|
||||
if (!m_pseudo_dma_timer->enabled())
|
||||
{
|
||||
m_pseudo_dma_timer->adjust(m_timeout);
|
||||
|
Loading…
Reference in New Issue
Block a user