Prev Problem
Next Problem

9. XOR Gate Using Basic Gates

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

module xor_gate(input a, input b, output y);
wire w1,w2;
assign w1 = a &~b;
assign w2 = ~a & b;
assign y = w1|w2;
endmodule

 

Was this helpful?
Upvote
Downvote