fix three typeof conversion issues

- type of strings are left implicit
- type of implicitly-typed params uses the type of the default value
- prevent exponential blowup for large ternary expressions
This commit is contained in:
Zachary Snow
2020-08-09 17:23:37 -04:00
parent 67466eaa60
commit 50a6966a4f
8 changed files with 163 additions and 15 deletions
+5
View File
@@ -0,0 +1,5 @@
module top;
parameter FOO = "some useful string";
localparam BAR = "some other useful string";
initial $display("'%s' '%s'", FOO, BAR);
endmodule