mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
9 lines
265 B
Systemverilog
9 lines
265 B
Systemverilog
// pattern: too many bindings specified for port connections in instance "e" of module "example": 3 specified \(1'b1, 1'b0, 1'b0\), but only 2 available \("x", "y"\)
|
|
module example(
|
|
input x, y
|
|
);
|
|
endmodule
|
|
module top;
|
|
example e(1'b1, 1'b0, 1'b0);
|
|
endmodule
|