projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f86170e
)
flow/ala: fix typo
author
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Fri, 8 Jun 2012 20:48:47 +0000
(22:48 +0200)
committer
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Fri, 8 Jun 2012 20:48:47 +0000
(22:48 +0200)
migen/flow/ala.py
patch
|
blob
|
history
diff --git
a/migen/flow/ala.py
b/migen/flow/ala.py
index 7e71c5245756ea945968945160e9a3c0d859df57..b2e844ebd2d8adf0a9bb6d8e5dfe00a569ff3bcb 100644
(file)
--- a/
migen/flow/ala.py
+++ b/
migen/flow/ala.py
@@
-7,7
+7,7
@@
from migen.corelogic import divider
class _SimpleBinary(CombinatorialActor):
def __init__(self, op, bv_op, bv_r):
self.op = op
- super().__init__
__
(
+ super().__init__(
("operands", Sink, [("a", bv_op), ("b", bv_op)]),
("result", Source, [("r", bv_r)]))