[Add] add icache dcache axi & pass test n46(before syscall)

This commit is contained in:
2023-07-20 17:19:04 +08:00
parent 60d8c35fef
commit 1b4c6eee10
17 changed files with 3577 additions and 335 deletions

View File

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