久久ER99热精品一区二区-久久精品99国产精品日本-久久精品免费一区二区三区-久久综合九色综合欧美狠狠

新聞中心

EEPW首頁 > 嵌入式系統 > 設計應用 > 狀態機“毛刺”的產生及消除方法

狀態機“毛刺”的產生及消除方法

作者: 時間:2010-09-17 來源:網絡 收藏

  when st4 => if (eoc =’0’)then next_state=st4;else next_state =st5; end if;

  when st5 => next_state =st6;

  when st6 => next_state =st0;

  when others=> next_state =st0;

  end case;

  out4=current_state(5 downto 2);

  ale=current_state(5); start =current_state(4);

  oe=current_state(3); lock1=current_state(2);

  end process;

  process(clk)

  begin

  if (clk’event and clk =‘1’) then

  current_state =next_state;

  end if ;

  end process ;

  process (lock1)

  if lock1=‘1’ and lock1’event then

  regl=d ;

  end if ;

  end process ;

  q=regl;

  ……

  


上一頁 1 2 3 下一頁

評論


相關推薦

技術專區

關閉