mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
7 lines
196 B
Systemverilog
7 lines
196 B
Systemverilog
module top;
|
|
localparam FOO = "some useful string";
|
|
localparam type T = type(FOO);
|
|
localparam T BAR = "some other useful string";
|
|
initial $display("'%s' '%s'", FOO, BAR);
|
|
endmodule
|