Files
sv2v/test/basic/string.v
T

6 lines
159 B
Verilog
Raw Permalink Normal View History

2020-08-09 10:31:04 -06:00
module top;
localparam FOO = "some useful string";
2020-08-09 10:31:04 -06:00
localparam BAR = "some other useful string";
initial $display("'%s' '%s'", FOO, BAR);
endmodule