sv2v/test/core/severity_task.sv

14 lines
236 B
Systemverilog
Raw Normal View History

2024-01-24 06:03:07 +01:00
module top;
initial begin
$info;
$info("%b", 1);
$warning;
$warning("%b", 2);
$error;
$error("%b", 3);
$fatal;
2024-01-25 20:57:38 +01:00
$fatal(0);
$fatal(1, "%b", 4);
2024-01-24 06:03:07 +01:00
end
endmodule