3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

Allow %0s $display format specifier

This commit is contained in:
Zachary Snow 2020-08-09 09:31:57 -06:00
parent 9a4f420b4b
commit 96ec9acf84
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,7 @@
module top;
parameter STR = "something interesting";
initial begin
$display("A: %s", STR);
$display("B: %0s", STR);
end
endmodule