From: Luke Kenneth Casson Leighton Date: Sat, 12 Sep 2020 10:14:38 +0000 (+0100) Subject: whoops, indentation error X-Git-Tag: semi_working_ecp5~90 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b380814a0c4b87aaee56cd65681d129c3cb48134;p=soc.git whoops, indentation error --- diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 3afdd750..09c98fe3 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1107,10 +1107,10 @@ class DCache(Elaboratable): & wb_in.ack & (replace_way == i)): comb += do_write.eq(1) - # Mask write selects with do_write since BRAM - # doesn't have a global write-enable - with m.If(do_write): - comb += wr_sel_m.eq(wr_sel) + # Mask write selects with do_write since BRAM + # doesn't have a global write-enable + with m.If(do_write): + comb += wr_sel_m.eq(wr_sel) # Cache hit synchronous machine for the easy case. # This handles load hits.