Xnorgate

From HDLBits

norgatePrevious

Create a module that implements an XNOR gate.


Expected solution length: Around 1 line.

Module Declaration

module top_module( 
    input a, 
    input b, 
    output out );

The bitwise-XOR operator is ^. There is no logical-XOR operator.

Write your solution here

x
 
1
module top_module( 
2
    input a, 
3
    input b, 
4
    output out );
5
6
endmodule
7
Upload a source file...