iverilog/ivtest/ivltests/macro2.v

12 lines
208 B
Verilog

`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