Merge branch 'main' of https://github.com/openhwgroup/cvw into main

This commit is contained in:
Ross Thompson 2023-02-26 19:58:24 -06:00
commit 86f611577f

View File

@ -109,5 +109,5 @@ module tlbcontrol #(parameter ITLB = 0) (
end
assign TLBHit = CAMHit & TLBAccess;
assign TLBMiss = (~CAMHit | TLBFlush) & Translate & TLBAccess;
assign TLBMiss = ~CAMHit & TLBAccess & Translate ;
endmodule