projects
/
ieee754fpu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
67b6569
)
Fixed the error when runing unit test
author
Aleksandar Kostovic
<alexandar.kostovic@gmail.com>
Fri, 5 Apr 2019 05:15:43 +0000
(07:15 +0200)
committer
Aleksandar Kostovic
<alexandar.kostovic@gmail.com>
Fri, 5 Apr 2019 05:15:43 +0000
(07:15 +0200)
src/add/fmul.py
patch
|
blob
|
history
diff --git
a/src/add/fmul.py
b/src/add/fmul.py
index 16167514fb7fa7b2baf21ef1909c263c8eabbb82..31095134364d3715b579c7b02c0e5bebb5980c48 100644
(file)
--- 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: