quan228228
Full Member level 4
the error infor is like below, please instruct me, thanks!
Warning: Parameter mismatch in linking reference 'non_recursive' by name.
Can't find design. (LINK-18)
Information: Building the design 'non_recursive' instantiated from design 'comb_0' with
the parameters "1". (HDL-193)
Warning: Can't find the design 'non_recursive'
in the library 'WORK'. (LBR-1)
Error: 'non_recursive' was not identified as a synthetic library module
and could not be successfully elaborated from design library 'WORK'. (LINK-10)
In design, i instantiate the module "non_recursive" four times like below.
non_recursive #(1) nr1(
.clk (clk),
.en (en_div2),
.rst_ (rst_),
.din (pdm),
.dout (nr1do)
);
non_recursive #(5) nr2(
.clk (clk),
.en (en_div2_2),
.rst_ (rst_),
.din (nr1do),
.dout (nr2do)
);
non_recursive #(9) nr3(
.clk (clk),
.en (en_div2_2_2),
.rst_ (rst_),
.din (nr2do),
.dout (nr3do)
);
non_recursive #(13) nr4(
.clk (clk),
.en (en_div2_2_2_2),
.rst_ (rst_),
.din (nr3do),
.dout (nr4do)
);
Is the problem related with the coding style or ...?
David
Warning: Parameter mismatch in linking reference 'non_recursive' by name.
Can't find design. (LINK-18)
Information: Building the design 'non_recursive' instantiated from design 'comb_0' with
the parameters "1". (HDL-193)
Warning: Can't find the design 'non_recursive'
in the library 'WORK'. (LBR-1)
Error: 'non_recursive' was not identified as a synthetic library module
and could not be successfully elaborated from design library 'WORK'. (LINK-10)
In design, i instantiate the module "non_recursive" four times like below.
non_recursive #(1) nr1(
.clk (clk),
.en (en_div2),
.rst_ (rst_),
.din (pdm),
.dout (nr1do)
);
non_recursive #(5) nr2(
.clk (clk),
.en (en_div2_2),
.rst_ (rst_),
.din (nr1do),
.dout (nr2do)
);
non_recursive #(9) nr3(
.clk (clk),
.en (en_div2_2_2),
.rst_ (rst_),
.din (nr2do),
.dout (nr3do)
);
non_recursive #(13) nr4(
.clk (clk),
.en (en_div2_2_2_2),
.rst_ (rst_),
.din (nr3do),
.dout (nr4do)
);
Is the problem related with the coding style or ...?
David