在 VHDL 中,我有一个记录数组。我想做一个 if 语句,在其中检查该记录的某些元素在整个数组的每个索引处是否为“0”。我怎样才能做到这一点?所以如果我有
type offset_t is record
a : std_logic;
b : std_logic;
end record
type offset_array is (7 downto 0) of offset_t;
type blah is record
offset2 : offset_array;
end record
如何检查offset2(7 downto 0)
is的“a”元素0
?if 语句是什么?我尝试了使用'range
和其他方式,但无法使其正常工作。