mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
Allow %0s $display format specifier
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
module top;
|
||||
parameter STR = "something interesting";
|
||||
initial begin
|
||||
$display("A: %s", STR);
|
||||
$display("B: %0s", STR);
|
||||
end
|
||||
endmodule
|
||||
Reference in New Issue
Block a user