ENTITY and_not ISPORT(in_1,in_2:IN bit;out_0:OUT bit);END and_not;architecture one of and_not isbeginout_0 <= '0' when (in_1 and in_2 ='1') else '1';end one;