mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
9 lines
142 B
Systemverilog
9 lines
142 B
Systemverilog
interface Interface(input a, output b);
|
|
assign b = a;
|
|
endinterface
|
|
|
|
module top;
|
|
logic a, b, c;
|
|
Interface intf(a, b, c);
|
|
endmodule
|