mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +02:00
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
|