mirror of https://github.com/YosysHQ/yosys.git
7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
|
module XNOR2X1 (B, A, Y);
|
||
|
input B;
|
||
|
input A;
|
||
|
output Y;
|
||
|
assign Y = !(B&!A|!B&A); // !(B&!A|!B&A)
|
||
|
endmodule
|