hdlbits-Xnorgate

Xnorgate

Create a module that implements an XNOR gate.

xnorgate

Hint

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

solution

1
2
3
4
5
6
7
module top_module( 
input a,
input b,
output out );
assign out = ~(a^b);
endmodule


hdlbits-Xnorgate
http://456-xiao.github.io/2024/08/03/hdlbits-Xnorgate/
作者
xyh
发布于
2024年8月3日
许可协议