From: Sebastien Bourdeauducq Date: Sat, 21 Jan 2012 23:32:02 +0000 (+0100) Subject: flow/ala: fix typo for And (thanks Lars) X-Git-Tag: 24jan2021_ls180~2099^2~1059 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1966117e17174141a4c2794be43d53a7804b87bb;p=litex.git flow/ala: fix typo for And (thanks Lars) --- 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):