improved handling of string parameters

- variable-size string parameter conversion restricted to modules which
  depend on the size of the string parameter
- string localparams are typed as appropriately sized vectors
- remove ordered parameter binding logic from string param conversion
This commit is contained in:
Zachary Snow
2021-05-28 20:27:14 -04:00
parent 280d3dc5a6
commit 7ffea36ddd
6 changed files with 71 additions and 44 deletions
+4
View File
@@ -0,0 +1,4 @@
module top;
mod #("FOO") m1();
mod #("BAR") m2();
endmodule