Using Signals
if clk’event and clk = ‘1’ then A <= B and D ;A <= B and C ;B <= F or G;E <= B and C ;end if; end process;
The current value of the signals are read
Any signal under the statement
“if clock’event and clock = ‘1’ then”
will infer the use of a register.