X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fsoc%2Fexperiment%2Ficache.py;h=e9c8ed1b1db45b50e6eb7d6158706aaeee6ed14e;hb=36f8a92eb6e900f69a375d793602b9353c32a540;hp=5523c50ca0fd3b1e0b7a7dcf5d30978db4fd77fe;hpb=5e392ebd3ba9f1568080abe3cde0f38e71e8fb51;p=soc.git diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index 5523c50c..e9c8ed1b 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -419,7 +419,8 @@ class ICache(FetchUnitInterface, Elaboratable, ICacheConfig): return - m.submodules.plrus = plru = PLRUs(self.NUM_LINES, self.WAY_BITS) + m.submodules.plrus = plru = PLRUs("itag", self.NUM_LINES, + self.WAY_BITS) comb += plru.way.eq(r.hit_way) comb += plru.valid.eq(r.hit_valid) comb += plru.index.eq(self.get_index(r.hit_nia))