mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
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
|