Two Processes
architecture RTL of MEDVEDEV is
...
begin
REG: process (CLK, RESET)
begin
-- State Registers Inference
end process REG ;
CMB: process (X, STATE)
begin
-- Next State Logic
end process CMB ;
end RTL ;
|
One Process
architecture RTL of MEDVEDEV is
...
begin
REG: process (CLK, RESET)
begin
-- State Registers Inference with Logic Block
end process REG ;
end RTL ;
|