四分频(VHDL语言)不知错在哪里

2019-07-16 01:58发布

各位朋友,大家好!
我刚学习FPGA,选择的是VHDL语言,试着编写了一个二分频和四分频的程序,二分频成功了,但四分频却有问题,代码如下:
library ieee;
use ieee.std_logic_1164.all;

entity divclk is
    port
    (
        -- Input ports
        inclk    : in  std_logic;
        outclk    : out  std_logic
    );
end divclk;

architecture one of divclk is

    signal tmp : std_logic;
    signal count : integer;

begin

    process(inclk)
    begin
        if(inclk'event and inclk = '1') then
            count <= count + 1;
            if(count = 2) then
                tmp <= not tmp;
                count <= 0;
            end if;            
        end if;
        outclk <= tmp;
    end process;

end one;
输出时钟outclk总是保持低电平,看了半天没有找到错误,还请各位帮忙指教一下!拜托了。



友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。