Уровни серьёзности (severity)
$fatal
$fatal$fatal(code, message);initial begin
if (0 == 1) begin
$fatal(1, "The condition should never happen. Fatal error occurred!");
end
end$warning, $info
$warning, $infoLast updated
$fatal$fatal(code, message);initial begin
if (0 == 1) begin
$fatal(1, "The condition should never happen. Fatal error occurred!");
end
end$warning, $infoLast updated
$info(message);
$warning(message);initial begin
$info("Simulation started.");
if (someWarningCondition) begin
$warning("A warning condition occurred.");
end
end