diff --git a/litedram/frontend/bist.py b/litedram/frontend/bist.py index 3414e91..c7dee9d 100644 --- a/litedram/frontend/bist.py +++ b/litedram/frontend/bist.py @@ -52,10 +52,8 @@ class LFSR(Module): curval.insert(0, nv) curval.pop() - self.sync += [ - state.eq(Cat(*curval[:n_state])), - self.o.eq(Cat(*curval)) - ] + self.sync += state.eq(Cat(*curval[:n_state])) + self.comb += self.o.eq(Cat(*curval)) # Counter ------------------------------------------------------------------------------------------