forked from Github_Repos/cvw
		
	Merge pull request #116 from davidharrishmc/dev
Removed unneeded TLBFlush from TLBMiss logic
This commit is contained in:
		
						commit
						52faec7922
					
				@ -109,5 +109,5 @@ module tlbcontrol #(parameter ITLB = 0) (
 | 
				
			|||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  assign TLBHit = CAMHit & TLBAccess;
 | 
					  assign TLBHit = CAMHit & TLBAccess;
 | 
				
			||||||
  assign TLBMiss = (~CAMHit | TLBFlush) & Translate & TLBAccess;
 | 
					  assign TLBMiss = ~CAMHit & TLBAccess & Translate ;
 | 
				
			||||||
endmodule
 | 
					endmodule
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user