10 lines
284 B
Coq
10 lines
284 B
Coq
|
|
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
|