mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
9 lines
251 B
Systemverilog
9 lines
251 B
Systemverilog
// pattern: unknown binding "R" specified for parameter overrides in instance "e" of module "example", 2 available \("P", "Q"\)
|
|
module example;
|
|
parameter P = 1;
|
|
parameter Q = 1;
|
|
endmodule
|
|
module top;
|
|
example #(.P(1), .R(2)) e();
|
|
endmodule
|