Moore Machine VHDL Code
Moore Machine VHDL Code
use ieee.std_logic_1164.all;
entity test_state is
port ( clk : in std_ulogic;
reset : in std_ulogic;
con1, con2, con3 : in std_ulogic;
out1, out2 : out std_ulogic );
end test_state;
-------------------------------------------------------------------------------
-- MOORE machine (outputs come from CASE statment)
-------------------------------------------------------------------------------
end rtl;