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(a,b,y);
  input a,b;
  output y;
  wire w1,w2;
  and a1(w1,a,(~b));
  and a2(w2,b,(~a));
  or a3(y,w1,w2);
endmodule

 

Was this helpful?
Upvote
Downvote