log unknown writes (nw)

This commit is contained in:
smf- 2013-06-20 15:10:45 +00:00
parent c8a9aa9db9
commit c630976e21

View File

@ -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;
}
}
}