Skip to content
Snippets Groups Projects
Commit c199ec2b authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Clarified purpose of c_boolean_arr and c_nat_boolean_arr.

parent 319c93b5
Branches
No related tags found
2 merge requests!28Master,!15Resolve L2SDP-27
......@@ -123,8 +123,8 @@ PACKAGE common_pkg IS
TYPE t_slv_512_arr IS ARRAY (INTEGER RANGE <>) OF STD_LOGIC_VECTOR(511 DOWNTO 0);
TYPE t_slv_1024_arr IS ARRAY (INTEGER RANGE <>) OF STD_LOGIC_VECTOR(1023 DOWNTO 0);
CONSTANT c_boolean_arr : t_boolean_arr := (TRUE, FALSE); -- array all possible values that can be iterated over
CONSTANT c_nat_boolean_arr : t_nat_boolean_arr := (TRUE, FALSE); -- array all possible values that can be iterated over
CONSTANT c_boolean_arr : t_boolean_arr := (TRUE, FALSE); -- array the two possible boolean values that can be iterated over
CONSTANT c_nat_boolean_arr : t_nat_boolean_arr := (TRUE, FALSE); -- array the two possible boolean values that can be iterated over
TYPE t_integer_matrix IS ARRAY (INTEGER RANGE <>, INTEGER RANGE <>) OF INTEGER;
TYPE t_boolean_matrix IS ARRAY (INTEGER RANGE <>, INTEGER RANGE <>) OF BOOLEAN;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment