J
John Smith
Guest
The low attribute can be used for multidimensional arrays? What will it
result?
For example:
architecture arch of test is
TYPE stdlogic_table IS ARRAY(std_ulogic, std_ulogic) OF std_ulogic;
begin
process
variable s: stdlogic_table;
variable i: std_logic;
begin
i := s'LOW;
wait;
end process;
end arch;
Thanks
result?
For example:
architecture arch of test is
TYPE stdlogic_table IS ARRAY(std_ulogic, std_ulogic) OF std_ulogic;
begin
process
variable s: stdlogic_table;
variable i: std_logic;
begin
i := s'LOW;
wait;
end process;
end arch;
Thanks