Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-03-01 23:35:17 +01:00

22 lines
669 B
Verilog

module xnor16(y16, a16, b16);
input [15:0] a16;
input [15:0] b16;
output [15:0] y16;
xnor(y16[0], a16[0], b16[0]);
xnor(y16[1], a16[1], b16[1]);
xnor(y16[2], a16[2], b16[2]);
xnor(y16[3], a16[3], b16[3]);
xnor(y16[4], a16[4], b16[4]);
xnor(y16[5], a16[5], b16[5]);
xnor(y16[6], a16[6], b16[6]);
xnor(y16[7], a16[7], b16[7]);
xnor(y16[8], a16[8], b16[8]);
xnor(y16[9], a16[9], b16[9]);
xnor(y16[10], a16[10], b16[10]);
xnor(y16[11], a16[11], b16[11]);
xnor(y16[12], a16[12], b16[12]);
xnor(y16[13], a16[13], b16[13]);
xnor(y16[14], a16[14], b16[14]);
xnor(y16[15], a16[15], b16[15]);
endmodule