From 1966117e17174141a4c2794be43d53a7804b87bb Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 22 Jan 2012 00:32:02 +0100 Subject: [PATCH] flow/ala: fix typo for And (thanks Lars) --- migen/flow/ala.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migen/flow/ala.py b/migen/flow/ala.py index e472f544..6b74bb38 100644 --- a/migen/flow/ala.py +++ b/migen/flow/ala.py @@ -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): -- 2.30.2