3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 09:04:08 +00:00
yosys/tests/various/tcl_apis.v
2024-12-02 19:56:51 +01:00

13 lines
156 B
Verilog

module m;
parameter PARAM = 0;
endmodule
(* foo="bar" *)
(* val=32'hffffffff *)
module top;
(* dont_touch *)
wire w;
m #(.PARAM(-3)) inst();
endmodule