Search
❯
Nov 12, 20251 min read
module xnor_gate ( input wire a,b, output wire xnor_out ); assign xnor_out = ~(a ^ b); endmodule