Files

12 lines
174 B
Systemverilog
Raw Permalink Normal View History

2021-07-05 18:00:12 -04:00
module top;
$info;
$info("%b", 1);
$warning;
$warning("%b", 2);
$error;
$error("%b", 3);
$fatal;
$fatal(0);
$fatal(1, "%b", 4);
2021-07-05 18:00:12 -04:00
endmodule