mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
16 lines
357 B
Coq
16 lines
357 B
Coq
|
// DESCRIPTION: Verilator: $display() test for %l
|
||
|
//
|
||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||
|
// without warranty, 2015 by Todd Strader.
|
||
|
|
||
|
module t (/*AUTOARG*/);
|
||
|
|
||
|
initial begin
|
||
|
assert (0 == 0) else $fatal(2, "%l %m : %d", 0);
|
||
|
$display("%l %m");
|
||
|
$write("*-* All Finished *-*\n");
|
||
|
$finish;
|
||
|
end
|
||
|
|
||
|
endmodule
|