From: Aleksandar Kostovic Date: Fri, 5 Apr 2019 05:15:43 +0000 (+0200) Subject: Fixed the error when runing unit test X-Git-Tag: ls180-24jan2020~1341 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f17961c65c2c4a45e57fc1a25751991034e2c0d;p=ieee754fpu.git Fixed the error when runing unit test --- diff --git a/src/add/fmul.py b/src/add/fmul.py index 16167514..31095134 100644 --- a/src/add/fmul.py +++ b/src/add/fmul.py @@ -41,8 +41,8 @@ class FPMUL(FPBase): m.submodules.b = b m.submodules.z = z - m.d.comb += a.v.eq(self.a.v) - m.d.comb += b.v.eq(self.b.v) + m.d.comb += a.v.eq(self.in_a.v) + m.d.comb += b.v.eq(self.in_b.v) with m.FSM() as fsm: