Merge pull request #116 from davidharrishmc/dev

Removed unneeded TLBFlush from TLBMiss logic
This commit is contained in:
Ross Thompson 2023-02-26 12:07:41 -06:00 committed by GitHub
commit 52faec7922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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