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