VHDL Model - Multi-Process Architecture
- The Process statements execute in parallel and
therefore, the order in which we list the statements
should have no affect on the outcome
case_label: PROCESS(a, b, c, d, sel)
USE ieee.std_logic_1164.all;
PORT ( a, b, c, d : IN STD_LOGIC;
sel : IN STD_LOGIC_VECTOR(1 DOWNTO 0);
ARCHITECTURE logic OF if_case IS
if_label: PROCESS(a, b, c, d, sel)
- Signal Assignments can also be
inside Process statements.