Files

7 lines
234 B
Verilog
Raw Permalink Normal View History

2020-08-09 10:31:04 -06:00
module top;
localparam FOO = "some useful string";
2021-05-28 20:27:14 -04:00
localparam WIDTH = $bits("some useful string");
localparam [WIDTH-1:0] BAR = "some other useful string"; // clipped
2020-08-09 10:31:04 -06:00
initial $display("'%s' '%s'", FOO, BAR);
endmodule