多年后我正在重新审视VHDL。我正在尝试在某个溢出期间设置一个带有计数器触发器的基本状态机。
出于某种原因,我在 m_tick 时钟的下降沿得到状态转换。基于状态过程中的 m_tick <= '1' 应该只在上升沿有一个转换?我一定是忽略了什么。
我正在 isim 中进行测试。我确信我可能在做一些不太聪明的事情。
谢谢。
entity nes_ctl is
generic(
N: integer := 3; --17 bit overflow 131k
);
port(
clk : in std_logic;
n_reset : in std_logic
);
end nes_ctl;
architecture Behavioral of nes_ctl is
signal count_reg, count_next: unsigned(N-1 downto 0); --counter to produce tick
signal m_tick: std_logic;
--state variable
type state_type is (s0,s1,s2,s3,s4,s5);
signal state_reg, state_next: state_type;
signal reset: std_logic; --inverted reset signal
begin
reset <= not(n_reset); --invert the reset signal
--syncronos logic
process(clk)
begin
if(reset= '1') then
count_reg <= (others=>'0');
state_reg <= s0;
elsif (clk'event and clk = '1') then
count_reg <= count_next;
state_reg <= state_next;
end if;
end process;
count_next <= count_reg +1; --increment counter, will overflow
m_tick <= '1' when count_reg = 0 else '0'; -- tick on every overflow
--STATE MACHINE
process(m_tick)
begin
if(m_tick <= '1') then --only when m_tick goes high
case state_reg is
when s0 =>
state_next <= s1;
when s1 =>
state_next <= s2;
when s2 =>
state_next <= s3;
when s3 =>
state_next<= s4;
when s4 =>
state_next<= s5;
when s5 =>
state_next <= s0;
end case;
else
state_next <= state_reg; --keep same state. no latches.
end if;
end process;
end Behavioral;