zpmanr
Newbie level 5
process(data_en2_to_assemble)
begin
if rising_edge(data_en2_to_assemble) then
wait for 5*period;
DataBuff_empty_flag(3) <= '0';
wait for 100*period;
DataBuff_empty_flag(3) <= '1';
end if;
end process;
When I use Modelsim to sim,there is always a error.
I want to know how to resolve this problem or how to optimize this section code.
Thanks.
begin
if rising_edge(data_en2_to_assemble) then
wait for 5*period;
DataBuff_empty_flag(3) <= '0';
wait for 100*period;
DataBuff_empty_flag(3) <= '1';
end if;
end process;
When I use Modelsim to sim,there is always a error.
I want to know how to resolve this problem or how to optimize this section code.
Thanks.