|
Message
From: Roberto Ammendola<roberto.ammendola@r...>
Date: Wed Apr 20 18:34:49 CEST 2005
Subject: [oc] Operations within a vector
David Brochart wrote:>variable global_b : std_logic; >... >global_b := '0'; >for i in PARAMETER downto 0 loop > for j in VECTOR_SIZE downto 0 loop > global_b := global_b or b(i, j); > end loop; >end loop; > >
thanks David, that's cool. I just wonder if there is a concurrent way to do it. But I am afraid that i am searching for something that (V)HDL can handle only in a sequential statement like above. And anyway I don't think my synthetizer will encounter many troubles to fit it in the timing requirements...
well, thanks again Roberto
|