yosys/tests/simple/string_format.v

8 lines
137 B
Verilog
Raw Normal View History

2020-08-09 10:31:57 -05:00
module top;
parameter STR = "something interesting";
initial begin
$display("A: %s", STR);
$display("B: %0s", STR);
end
endmodule