-- process.vhd -- desc: example use of process statement architecture sequential of and_gate is begin G1:Process ( a_in, b_in ) -- begin sequential processing begin case (a_in & b_in) is when '1'&'1' => z <= '1'; others z <= '0'; end case; end process; end sequential;