Xnorgate

From HDLBits

norgatePrevious

Create a module that implements an XNOR gate.


Xnorgate.png

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

Upload a source file...