From: Cole Poirier Date: Tue, 29 Sep 2020 18:00:28 +0000 (-0700) Subject: icache.py fix test stbs_done signal, not stbs_zero temp signal X-Git-Tag: 24jan2021_ls180~287 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=20438cc8f26e15d8efec3ba64e960d61ce85f3e3;p=soc.git icache.py fix test stbs_done signal, not stbs_zero temp signal --- diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index efb06c9d..905f3811 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -1255,7 +1255,7 @@ class ICache(Elaboratable): # if wishbone_in.stall = '0' and not stbs_done then # If we are still sending requests, # was one accepted? - with m.If(~wb_in.stall & stbs_zero): + with m.If(~wb_in.stall & stbs_done): # -- That was the last word ? We are done sending. # -- Clear stb and set stbs_done so we can handle # -- an eventual last ack on the same cycle.