kushal nandanwar
Full Member level 3
Code:
signal H0,H1,H2,H3 : std_logic_vector(7 downto 0) := (others => '0');
H0 <= 00000010;
H1 <= 00000001;
H2 <= 00000011;
H3 <= 00000100;
error
Entity <fir_4tap> compiled.
ERROR:HDLParsers:800 - "I:/Shivam/cla/cla/FIR/FIR.vhd" Line 109. Type of H0 is incompatible with type of 00000010.
ERROR:HDLParsers:800 - "I:/Shivam/cla/cla/FIR/FIR.vhd" Line 110. Type of H1 is incompatible with type of 00000001.
ERROR:HDLParsers:800 - "I:/Shivam/cla/cla/FIR/FIR.vhd" Line 111. Type of H2 is incompatible with type of 00000011.
ERROR:HDLParsers:800 - "I:/Shivam/cla/cla/FIR/FIR.vhd" Line 112. Type of H3 is incompatible with type of 00000100.