mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-14 12:58:45 +00:00
6 lines
72 B
Verilog
6 lines
72 B
Verilog
module test(input [7:0] in, output out);
|
|
|
|
assign out = ~^in;
|
|
|
|
endmodule
|