library ieee;
use ieee.std_logic_1164.all;

entity LHFF_C is
  port (C, L, D : in std_logic;
        Q, QB : out std_logic);
end LHFF_C;

architecture CON of LHFF_C is
  signal TEMP : std_logic;
begin
  A: block (not C'STABLE and C = '1')
  begin
    TEMP <= GUARDED D when (L = '1');
  end block A;
  Q <= TEMP;
  QB <= not TEMP;
end CON;
