X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fsoc%2Fexperiment%2Ficache.py;h=02b54a03932f56d151b6c553950b3d4385341d15;hb=1bcb90676398c8fa0c309c3c7ed3c9ef306c577e;hp=5523c50ca0fd3b1e0b7a7dcf5d30978db4fd77fe;hpb=601ef3aa55a232c78aa3a604bc8572aaf42d85b5;p=soc.git diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index 5523c50c..02b54a03 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -704,7 +704,7 @@ class ICache(FetchUnitInterface, Elaboratable, ICacheConfig): # If we are still sending requests, was one accepted? with m.If(~bus.stall & r.wb.stb): # That was the last word? We are done sending. Clear stb - with m.If(self.is_last_row_addr(r.req_adr, r.end_row_ix)): + with m.If(self.is_last_row_addr(r.wb.adr, r.end_row_ix)): sync += Display("IS_LAST_ROW_ADDR r.wb.addr:%x " "r.end_row_ix:%x r.wb.stb:%x", r.wb.adr, r.end_row_ix, r.wb.stb)