mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 04:01:25 +00:00
fmt: rudimentary %m support (= %l)
This commit is contained in:
parent
c382d7d3ac
commit
75b44f21d1
4 changed files with 34 additions and 0 deletions
12
tests/fmt/display_lm.v
Normal file
12
tests/fmt/display_lm.v
Normal file
|
@ -0,0 +1,12 @@
|
|||
module top;
|
||||
mid mid_uut ();
|
||||
endmodule
|
||||
|
||||
module mid ();
|
||||
bot bot_uut ();
|
||||
endmodule
|
||||
|
||||
module bot ();
|
||||
initial $display("%%l: %l\n%%m: %m");
|
||||
always $display("%%l: %l\n%%m: %m");
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue