flow/ala: fix typo
This commit is contained in:
parent
f86170e349
commit
de408b2cba
|
@ -7,7 +7,7 @@ from migen.corelogic import divider
|
||||||
class _SimpleBinary(CombinatorialActor):
|
class _SimpleBinary(CombinatorialActor):
|
||||||
def __init__(self, op, bv_op, bv_r):
|
def __init__(self, op, bv_op, bv_r):
|
||||||
self.op = op
|
self.op = op
|
||||||
super().__init____(
|
super().__init__(
|
||||||
("operands", Sink, [("a", bv_op), ("b", bv_op)]),
|
("operands", Sink, [("a", bv_op), ("b", bv_op)]),
|
||||||
("result", Source, [("r", bv_r)]))
|
("result", Source, [("r", bv_r)]))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue