Xnorgate
From HDLBits
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 );
Create a module that implements an XNOR gate.
Expected solution length: Around 1 line.
module top_module( input a, input b, output out );
^
. There is no logical-XOR operator.