Prev Problem
Next Problem

36. 4-Input NAND Gate Primitive

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

Code

module nand4_prim (
    input  a,
    input  b,
    input  c,
    input  d,
    output y
);
    // TODO: instantiate the built-in NAND gate primitive
    // nand <instance_name> ( <out>, <in1>, <in2>, <in3>, <in4> );

    nand n1(y,a,b,c,d);
endmodule

 

Was this helpful?
Upvote
Downvote