mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
14 lines
181 B
Verilog
14 lines
181 B
Verilog
module test(x, y, z);
|
|
localparam OFF = 0;
|
|
generate
|
|
if (OFF) ;
|
|
else input x;
|
|
if (!OFF) input y;
|
|
else ;
|
|
if (OFF) ;
|
|
else ;
|
|
if (OFF) ;
|
|
input z;
|
|
endgenerate
|
|
endmodule
|