From 4055c982e6e1bb3fc702be3f69cbbd63dd6cd901 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Mon, 10 Aug 2020 10:45:49 -0700 Subject: [PATCH] Fix typo in mmu.py --- src/soc/experiment/mmu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/mmu.py b/src/soc/experiment/mmu.py index 6a809636..aeda3a58 100644 --- a/src/soc/experiment/mmu.py +++ b/src/soc/experiment/mmu.py @@ -768,7 +768,7 @@ class AddrShifter(Elaboratable): comb += v.state.eq(State.RADIX_READ_WAIT) # when RADIX_READ_WAIT => - with m.Case(State.RADIX_READ_WAIT) + with m.Case(State.RADIX_READ_WAIT): # if d_in.done = '1' then with m.If(d_in.done == 1): # v.pde := data; -- 2.30.2