flow/ala: fix typo for And (thanks Lars)
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 21 Jan 2012 23:32:02 +0000 (00:32 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 21 Jan 2012 23:32:02 +0000 (00:32 +0100)
migen/flow/ala.py

index e472f54459cad1e92990eb14ab1550e869cb4f74..6b74bb388e5c7d47055cdd7f09b86544c7691d9f 100644 (file)
@@ -32,7 +32,7 @@ class Mul(_SimpleBinary):
 
 class And(_SimpleBinary):
        def __init__(self, bv):
-               _SimpleBinary.__init__(self, '*', bv, bv)
+               _SimpleBinary.__init__(self, '&', bv, bv)
 
 class Xor(_SimpleBinary):
        def __init__(self, bv):