[Add] add icache dcache axi & pass test n46(before syscall)
This commit is contained in:
@@ -5,6 +5,7 @@ module pip_ctrl(
|
||||
input stallreq_ds,
|
||||
input stallreq_es,
|
||||
input stallreq_axi,
|
||||
input stallreq_cache,
|
||||
output reg flush,
|
||||
output reg [`StallBus-1:0] stall
|
||||
);
|
||||
@@ -36,6 +37,10 @@ module pip_ctrl(
|
||||
flush = 0;
|
||||
stall = `StallBus'b011111;
|
||||
end
|
||||
else if(stallreq_cache) begin
|
||||
flush = 0;
|
||||
stall = `StallBus'b111111;
|
||||
end
|
||||
else begin
|
||||
flush = 0;
|
||||
stall = `StallBus'b000000;
|
||||
|
||||
Reference in New Issue
Block a user