M
Mohammed A khader
Guest
HI all,
Is it necesary to specify Dec_En and Addrs_En in the following code.
Synplicity it as a Warning.
Thanks for your comments..
Mohammed khader.
Regsrocess(Clk)
begin
if(Dec_En = '1' and RISING_EDGE(Clk))then
Decode_Reg <= srl_buff;
end if;
if(Addrs_En = '1' and RISING_EDGE(Clk))then
Addrs_Reg <= std_logic_vector(Decode_Reg(12 downto 6));
end if;
if(Data_En = '1' and RISING_EDGE(Clk))then
Data_Reg <= Decode_Reg;
end if;
end process Regs;
Is it necesary to specify Dec_En and Addrs_En in the following code.
Synplicity it as a Warning.
Thanks for your comments..
Mohammed khader.
Regsrocess(Clk)
begin
if(Dec_En = '1' and RISING_EDGE(Clk))then
Decode_Reg <= srl_buff;
end if;
if(Addrs_En = '1' and RISING_EDGE(Clk))then
Addrs_Reg <= std_logic_vector(Decode_Reg(12 downto 6));
end if;
if(Data_En = '1' and RISING_EDGE(Clk))then
Data_Reg <= Decode_Reg;
end if;
end process Regs;