K
krby_xtrm
Guest
is there a way to represent a 6-bit binary in HEX?
ex:
signal dw_number : std_logic_vector(5 downto 0);
case dw_number is
when X"01" => DATA <= OTHER_DATA; -- this X"01" is 8-bit?
ex:
signal dw_number : std_logic_vector(5 downto 0);
case dw_number is
when X"01" => DATA <= OTHER_DATA; -- this X"01" is 8-bit?