最近正在学习verilog,我的verilog代码中使用了designware的乘法器与除法器,在modelsim调试时使用的是sim模型,现在准备使用synplify综合了放FPGA跑,所以用syn模型替换了sim的.v文件。 不知道这个事情具体应该怎么做?如果只是用文件替换的话会报错: reference to undefined module DW02_mult 我的.v文件叫做DW02_mult5x5...
undefined,reference 如题我的verilog代码中使用了designware的乘法器与除法器,在modelsim调试时使用的是sim模型,现在准备使用synplify综合了放fpga跑,所以用syn模型替换了sim的.v文件。 不知道这个事情具体应该怎么做?如果只是用文件替换的话会报错: reference to undefined module DW02_mult 我的.v文件叫做DW02_mult...
Synthesis Place Route Results 5Analyze and Debug Designs with Synplify Pro 5Set Up Projects and Compile Designs in Quartus II 5Use Quartus II MegaWizard Plug-In Manager to Generate LPM Functions 5Synthesize and Place Route a Design Using Black- box 5Use Synplify Pro Driven Design Flow Copyright...
如果只是用文件替换的话会报错: reference to undefined module DW02_mult 我的.v 文件叫做 DW02_mult5x5(因为是 5bit 的乘法),在文件里有: // Instance of DW02_mult DW02_mult #(A_width, B_width) U1 ( .A(A), .B(B), .TC(TC), .PRODUCT(PRODUCT) ); 这样的例化语句。。 实在是一头...