This commit is contained in:
John Terrell 2023-03-20 14:44:07 -07:00
parent c36dfd55ae
commit a579b7b813
Signed by untrusted user who does not match committer: johnt
GPG Key ID: 2E424258DD3731F4
2 changed files with 6 additions and 2 deletions

View File

@ -28,7 +28,11 @@ module mkMemoryAccessStage#(IsaCfg#(xlen) cfg)(MemoryAccessStage_Ifc#(xlen));
// responding to any responses that have returned. If a request is in flight, a bubble is returned. // responding to any responses that have returned. If a request is in flight, a bubble is returned.
// //
method ActionValue#(MEM_WB#(xlen)) step(EX_MEM#(xlen) ex_mem); method ActionValue#(MEM_WB#(xlen)) step(EX_MEM#(xlen) ex_mem);
return defaultValue; MEM_WB#(xlen) mem_wb = defaultValue;
if (!ex_mem.common.isBubble) begin
end
return mem_wb;
endmethod endmethod
interface MemoryClient memoryClient; interface MemoryClient memoryClient;