From: Sebastien Bourdeauducq Date: Sun, 20 Sep 2015 06:46:30 +0000 (+0800) Subject: fhdl/structure: add missing init X-Git-Tag: 24jan2021_ls180~2099^2~3^2~63 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59802bec7674068220610b8082842b70a66f4230;p=litex.git fhdl/structure: add missing init --- diff --git a/migen/fhdl/structure.py b/migen/fhdl/structure.py index ba72f09b..7f23184a 100644 --- a/migen/fhdl/structure.py +++ b/migen/fhdl/structure.py @@ -579,6 +579,7 @@ class Case(_Statement): class _ArrayProxy(_Value): def __init__(self, choices, key): + _Value.__init__(self) self.choices = [] for c in choices: if isinstance(c, (bool, int)):