下面这个是我写的一段。我不知道应该如何写,请高手帮忙。
process (clkin)
begin
if rising_edge(clkin) then
if( Data_bus = "11111111" )then -- (0xFF)
FF_flag <= '1';
end if;
end if;
end process;
process (clkin)
begin
if rising_edge(clkin) then
if( Data_bus = "11011000" )then -- (0xD8)
if(FF_flag = '1') then
HEAD_OF_FILE_FLAG <= '1';
end if;
end if;
end if;
end process;
[em13][em13][em13][em13][em13]