From 57bc50ec36d86a69be8782b4c7f45a84c98c2f85 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 29 Jan 2022 16:43:56 +0000 Subject: [PATCH] explanatory comment when page hit is the same for stores --- src/soc/experiment/dcache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 2689a319..671b5ce6 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1638,6 +1638,7 @@ class DCache(Elaboratable): with m.If(~bus.stall): # See if there is another store waiting # to be done which is in the same real page. + # (this is when same_tsg is true) with m.If(req.valid): _ra = req.real_addr[ROW_OFF_BITS:SET_SIZE_BITS] sync += r1.wb.adr[0:SET_SIZE_BITS-ROW_OFF_BITS].eq(_ra) -- 2.30.2