interface_array_output.sv 154 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
interface Interface(output out);
    assign out = 1;
endinterface

module top;
    logic x;
    Interface intfs[1](x);
    initial $display(x);
endmodule