yosys/tests/simple/string_format.v

8 lines
151 B
Verilog
Raw Normal View History

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