iverilog/ivtest/ivltests/fatal_et_al2.v

10 lines
284 B
Verilog

module top;
initial begin
#1 $info("This is the $info message.");
#1 $warning("This is the $warning message.");
#1 $error("This is the $error message.");
#1 $fatal(0, "This is the $fatal message.");
#1 $display("FAILED: This should not print.");
end
endmodule