
这是突然变正常的

这是之前不正常的,使我在之后的基础上再”创做“的,因为不知为什么突然变正常了也找不到,之前的图了
第二幅图的fifo_rd没有起来是因为
process(reset,clk)
begin
if reset = '1' then
fifo_rd <= '0';
elsif clk'event and clk ='1' then
if (fifo_empty = '0') then
fifo_rd <= (not fifo_rd );
elsif fifo_empty = '1' then
fifo_rd <= '0';
end if;
end if;
end process;
暂时就是这个情况,希望大家能帮我找到原因^_^