11 lines
130 B
Coq
11 lines
130 B
Coq
|
|
`define display_passed \
|
||
|
|
initial begin // comment \
|
||
|
|
$display("PASSED"); \
|
||
|
|
end
|
||
|
|
|
||
|
|
module test();
|
||
|
|
|
||
|
|
`display_passed
|
||
|
|
|
||
|
|
endmodule
|