1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Increase logging (but leave it disabled).

This commit is contained in:
Thomas Harte 2021-11-19 08:01:23 -05:00
parent c750bdafd5
commit cf25d8a378

View File

@ -25,6 +25,7 @@ bool Copper::advance_dma(uint16_t position) {
case State::Waiting:
// TODO: blitter-finished bit.
if((position & position_mask_) >= instruction_[0]) {
LOG("Unblocked waiting for " << PADHEX(4) << instruction_[0] << " at " << position);
state_ = State::FetchFirstWord;
}
return false;