mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-27 06:35:04 +00:00
Flipped order of conditional so as negligibly to improve prediction.
This commit is contained in:
parent
08e8118be3
commit
7ad44f5152
@ -1109,7 +1109,7 @@ template <class T> class Processor {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isReadOperation(nextBusOperation) && _ready_line_is_enabled) {
|
if(_ready_line_is_enabled && isReadOperation(nextBusOperation)) {
|
||||||
_ready_is_active = true;
|
_ready_is_active = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user