From: Daniel Benusovich Date: Wed, 10 Apr 2019 07:24:28 +0000 (-0700) Subject: Add a comment X-Git-Tag: div_pipeline~2269 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8115e1740da88c61daff26b1411afc27188fb9ca;p=soc.git Add a comment --- diff --git a/TLB/src/SetAssociativeCache.py b/TLB/src/SetAssociativeCache.py index dfc6e1ca..4e5a863a 100644 --- a/TLB/src/SetAssociativeCache.py +++ b/TLB/src/SetAssociativeCache.py @@ -154,6 +154,7 @@ class SetAssociativeCache(): with m.FSM() as fsm: with m.State("SEARCH"): m.d.comb += self.ready.eq(0) + # check_tags will set the state if the conditions are met check_tags(m) with m.State("FINISHED"): m.next = "SEARCH"