Three Processes
architecture RTL of MEALY is
...
begin
REG: -- Clocked Process
CMB: -- Combinational Process
OUTPUT: process (STATE, X)
begin
-- Output Logic
end process OUTPUT ;
end RTL ;
|
Two Processes
architecture RTL of MEALY is
...
begin
MED: process (CLK, RESET)
begin
-- State Registers Inference with Next State Logic
end process MED ;
OUTPUT: process (STATE, X)
begin
-- Output Logic
end process OUTPUT ;
end RTL ;
|