mirror of https://github.com/zachjs/sv2v.git
10 lines
154 B
Systemverilog
10 lines
154 B
Systemverilog
|
|
interface Interface(output out);
|
||
|
|
assign out = 1;
|
||
|
|
endinterface
|
||
|
|
|
||
|
|
module top;
|
||
|
|
logic x;
|
||
|
|
Interface intfs[1](x);
|
||
|
|
initial $display(x);
|
||
|
|
endmodule
|