From: Tobias Platen Date: Wed, 5 Aug 2020 18:45:40 +0000 (+0200) Subject: undo changes that fix unit test, but do not solve anything X-Git-Tag: semi_working_ecp5~438 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ecf9b315c79ba0455b093ca57ced9ccea5171edd;p=soc.git undo changes that fix unit test, but do not solve anything --- diff --git a/src/soc/scoreboard/addr_split.py b/src/soc/scoreboard/addr_split.py index 0cd546ce..aa99f63c 100644 --- a/src/soc/scoreboard/addr_split.py +++ b/src/soc/scoreboard/addr_split.py @@ -100,7 +100,7 @@ class LDSTSplitter(Elaboratable): mzero = Const(0, mlen) m.submodules.ld1 = ld1 = LDLatch(self.dwidth, self.awidth-dlen, mlen) m.submodules.ld2 = ld2 = LDLatch(self.dwidth, self.awidth-dlen, mlen) - m.submodules.lenexp = lenexp = LenExpand(self.dlen, cover=8) + m.submodules.lenexp = lenexp = LenExpand(self.dlen) # set up len-expander, len to mask. ld1 gets first bit, ld2 gets rest comb += lenexp.addr_i.eq(self.addr_i)