mirror of https://github.com/YosysHQ/yosys.git
14 lines
181 B
Coq
14 lines
181 B
Coq
|
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
|