Solved
Forum Discussion
KhaiChein_Y_Intel
Regular Contributor
6 years agoHi,
Could you see if the below changes fit your design requirements?
process(arst_n, clk)
begin
if arst_n = '0' then -- reset case
s_valid <= '0';
elsif rising_edge(clk) then -- normal case
s_valid <= valid;
end if;
end process;
process(clk)
begin
if rising_edge(clk) then
s_data <= data; --[511:0] -- no reset
end if;
end process;
Thanks.