flow/ala: fix typo

This commit is contained in:
Sebastien Bourdeauducq 2012-06-08 22:48:47 +02:00
parent f86170e349
commit de408b2cba
1 changed files with 1 additions and 1 deletions

View File

@ -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)]))