mirror of https://github.com/zachjs/sv2v.git
11 lines
226 B
Systemverilog
11 lines
226 B
Systemverilog
|
|
interface Interface1;
|
||
|
|
logic x;
|
||
|
|
modport ModportA (input x);
|
||
|
|
modport ModportB (output x);
|
||
|
|
endinterface
|
||
|
|
interface Interface2;
|
||
|
|
logic x;
|
||
|
|
modport ModportA (input x);
|
||
|
|
modport ModportB (output x);
|
||
|
|
endinterface
|