mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-05 01:03:02 +02:00
- modports can use complex expressions - update interface_infer test for consistency across simulators - fix interface inlining of implicitly typed data declarations
19 lines
319 B
Verilog
19 lines
319 B
Verilog
module top;
|
|
reg clock;
|
|
initial begin
|
|
clock = 1;
|
|
forever #5 clock = ~clock;
|
|
end
|
|
|
|
initial begin
|
|
repeat(30)
|
|
@(posedge clock);
|
|
$finish;
|
|
end
|
|
|
|
Tester #(1) t1(clock);
|
|
Tester #(2) t2(clock);
|
|
Tester #(3) t3(clock);
|
|
Tester #(4) t4(clock);
|
|
endmodule
|