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