12 lines
208 B
Coq
12 lines
208 B
Coq
|
|
`define TBMESS(str) $display("PAS%s", str );
|
||
|
|
|
||
|
|
// 1364-2001 S19.3 "The text macro facility is not affected by the compiler
|
||
|
|
// directive `resetall."
|
||
|
|
`resetall
|
||
|
|
|
||
|
|
module main;
|
||
|
|
|
||
|
|
initial `TBMESS("SED")
|
||
|
|
|
||
|
|
endmodule
|