S
Sudeep Vhdl-Rookie
Guest
I am getting a warning of My Array is not connecting to the block.
when i test bench it i am getting 'U's.
WARNING:Xst:2677 - Node <COUNT_3_0> of sequential type is unconnected
in block <MemMod2d>.
Sample code:
architecture Behavioral of MemMod2d is
type MEM1 is array (0 to 255) of STD_LOGIC_VECTOR (7 downto 0); -- 1d
x 1d
signal COUNT: MEM1;
begin
DataIn: process (pixdata,clk,Reset_Frame)
begin
if (Reset_Frame = '1') then
if (clk'event and clk = '0') then
For i in 0 to 255 Loop
if (pixdata = i) then
COUNT (i) <= COUNT (i)+ "1";
end loop;
end if;
end if;
end process DataIn;
when i test bench it i am getting 'U's.
WARNING:Xst:2677 - Node <COUNT_3_0> of sequential type is unconnected
in block <MemMod2d>.
Sample code:
architecture Behavioral of MemMod2d is
type MEM1 is array (0 to 255) of STD_LOGIC_VECTOR (7 downto 0); -- 1d
x 1d
signal COUNT: MEM1;
begin
DataIn: process (pixdata,clk,Reset_Frame)
begin
if (Reset_Frame = '1') then
if (clk'event and clk = '0') then
For i in 0 to 255 Loop
if (pixdata = i) then
COUNT (i) <= COUNT (i)+ "1";
end loop;
end if;
end if;
end process DataIn;