sv2v/test/core/system_tasks.sv

14 lines
236 B
Systemverilog

module top;
initial begin
$info;
$info("%b", 1);
$warning;
$warning("%b", 2);
$error;
$error("%b", 3);
$fatal;
$fatal(0);
$fatal(0, "%b", 4);
end
endmodule