From: Tobias Platen Date: Wed, 14 Jul 2021 18:28:31 +0000 (+0200) Subject: dcache: improve debug output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0fd185a50865e04ee4c6fb8cc61c6c4122527a13;p=soc.git dcache: improve debug output --- diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 8c002d28..b818347b 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1079,7 +1079,10 @@ class DCache(Elaboratable): # error cases complete without stalling with m.If(r1.ls_error): - sync += Display("completing ld/st with error") + with m.If(r1.dcbz): + sync += Display("completing dcbz with error") + with m.Else(): + sync += Display("completing ld/st with error") # Slow ops (load miss, NC, stores) with m.If(r1.slow_valid):