3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-24 21:27:00 +00:00

Test new Tcl methods

This commit is contained in:
Martin Povišer 2024-11-04 16:18:50 +01:00
parent cba9460cba
commit 23922faecc
3 changed files with 28 additions and 0 deletions

11
tests/various/tcl_apis.v Normal file
View file

@ -0,0 +1,11 @@
module m;
parameter PARAM = 0;
endmodule
(* foo="bar" *)
module top;
(* dont_touch *)
wire w;
m #(.PARAM(4)) inst();
endmodule