mirror of https://github.com/zachjs/sv2v.git
7 lines
195 B
Systemverilog
7 lines
195 B
Systemverilog
|
|
module top;
|
||
|
|
parameter FOO = "some useful string";
|
||
|
|
localparam type T = type(FOO);
|
||
|
|
localparam T BAR = "some other useful string";
|
||
|
|
initial $display("'%s' '%s'", FOO, BAR);
|
||
|
|
endmodule
|