mirror of https://github.com/zachjs/sv2v.git
8 lines
158 B
Verilog
8 lines
158 B
Verilog
|
|
module top;
|
||
|
|
`define TEST(subroutine) \
|
||
|
|
initial repeat (4) $display(`"subroutine()`");
|
||
|
|
`TEST(dump)
|
||
|
|
`TEST(P::dump)
|
||
|
|
`TEST(C#(1)::dump)
|
||
|
|
endmodule
|