mirror of https://github.com/YosysHQ/yosys.git
19 lines
266 B
Plaintext
19 lines
266 B
Plaintext
|
|
read_verilog -defer <<EOT
|
||
|
|
|
||
|
|
module bb (...);
|
||
|
|
localparam A = "abc";
|
||
|
|
input a;
|
||
|
|
output b;
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
module top (...);
|
||
|
|
input a;
|
||
|
|
output b;
|
||
|
|
bb #(.A("def")) my_bb (a, b);
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
EOT
|
||
|
|
|
||
|
|
logger -expect error "does not have a parameter named 'A'" 1
|
||
|
|
hierarchy -check -top top
|