-- Entity Declaration

ENTITY inv IS
  PORT (
  i : in std_logic;	-- i
  nq : out std_logic	-- nq
  );
end inv;


-- Architecture Declaration

ARCHITECTURE data_flow OF inv IS

BEGIN
  
nq <= not i;

end data_flow;
