mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-31 00:44:38 +00:00
Fixed icache pcmux control for handling miss spill miss.
This commit is contained in:
parent
192878b124
commit
87d3869a6e
@ -284,7 +284,7 @@ module icachecontroller #(parameter LINESIZE = 256) (
|
|||||||
NextState = STATE_MISS_FETCH_WDV;
|
NextState = STATE_MISS_FETCH_WDV;
|
||||||
end else if (~hit & spill) begin
|
end else if (~hit & spill) begin
|
||||||
CntReset = 1'b1;
|
CntReset = 1'b1;
|
||||||
PCMux = 2'b10;
|
PCMux = 2'b01;
|
||||||
NextState = STATE_MISS_SPILL_FETCH_WDV;
|
NextState = STATE_MISS_SPILL_FETCH_WDV;
|
||||||
end else begin
|
end else begin
|
||||||
NextState = STATE_READY;
|
NextState = STATE_READY;
|
||||||
|
Loading…
Reference in New Issue
Block a user