mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2024-12-22 10:42:24 +00:00
9 lines
76 B
Coq
9 lines
76 B
Coq
|
module big_xor (A, Y);
|
||
|
|
||
|
input [7:0] A;
|
||
|
output Y;
|
||
|
|
||
|
assign Y = ^A;
|
||
|
|
||
|
endmodule
|