mirror of https://github.com/YosysHQ/yosys.git
12 lines
132 B
Verilog
12 lines
132 B
Verilog
|
module m;
|
||
|
parameter PARAM = 0;
|
||
|
endmodule
|
||
|
|
||
|
(* foo="bar" *)
|
||
|
module top;
|
||
|
(* dont_touch *)
|
||
|
wire w;
|
||
|
|
||
|
m #(.PARAM(4)) inst();
|
||
|
endmodule
|