mirror of
https://github.com/holub/mame
synced 2025-06-07 13:23:50 +03:00
log unknown writes (nw)
This commit is contained in:
parent
c8a9aa9db9
commit
c630976e21
@ -1306,6 +1306,10 @@ WRITE16_MEMBER( ata_mass_storage_device::write_cs0 )
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
logerror("%s:unknown IDE cs0 write at %03X = %04x, mem_mask=%d\n", machine().describe_context(), offset, data, mem_mask);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1343,6 +1347,10 @@ WRITE16_MEMBER( ata_mass_storage_device::write_cs1 )
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
logerror("%s:unknown IDE cs1 write at %03X = %04x, mem_mask=%d\n", machine().describe_context(), offset, data, mem_mask);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user