From 59bb71d4bae586d5308df333d7c2332efa2d9301 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 11 May 2021 00:25:53 +0100 Subject: [PATCH] whoops, indentation issue on m.If/m.Else in dcache.py --- src/soc/experiment/dcache.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 65ed3465..c32ff783 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1190,10 +1190,10 @@ class DCache(Elaboratable): sync += r1.mmu_error.eq(r0.mmu_req) sync += r1.cache_paradox.eq(access_ok) - with m.Else(): - sync += r1.ls_error.eq(0) - sync += r1.mmu_error.eq(0) - sync += r1.cache_paradox.eq(0) + with m.Else(): + sync += r1.ls_error.eq(0) + sync += r1.mmu_error.eq(0) + sync += r1.cache_paradox.eq(0) with m.If(req_op == Op.OP_STCX_FAIL): sync += r1.stcx_fail.eq(1) -- 2.30.2