Prev Problem
Next Problem

4. NOT Gate

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do youan to solve it? so,given the NOT gate ,it performs inverting function.given input as a and output is y.

 

 

Code

module top_module(input a,output y);
wire z;
assign y=~a;
endmodule

 

Was this helpful?
Upvote
Downvote