module nand4_prim ( input a, input b, input c, input d, output y ); // TODO: instantiate the built-in NAND gate primitive nand nand_gate(y, a, b, c, d); endmodule