您的位置:首页 > 其它

ISE Simulator综合后仿真 - How do you run Post Synthesis Simulation in ISE Project Navigator?

2013-01-27 15:36 561 查看
转自:http://china.xilinx.com/support/answers/45668.htm


疑问描述


How do you run Post Synthesis Simulation in ISE Project Navigator?


解决方案


Follow these steps to run simulation:

Create the project in ISE Project Navigator and add all the required modules including the testbench.
Set the module (DUT) you want to perform Post-Synthesis Simulation as the Top Module.
Run Synthesis.
Once the design is synthesized. Expand the Synthesize -> XST option and double-click on Generate Post-Synthesis Simulation Model. This runs NetGen to create the simulation netlist. The output is placed in the "./netgen/synthesis" folder in
your project directory. The file generated is named: <top_module_name>_synthesis.vhd/v. This file would be a VHDL or Verilog file depending on the source file of the synthesized module. Alternately, you can right-click on Generate Post-Synthesis Simulation
Model
and change the value of Simulation Model Target (VHDL/Verilog) as per your needs.
In your "project" directory, create a new ".prj" file. Add the two entries as shown below:

vhdl/verilog work (or library name) "netgen\synthesis\<top_module_name>_synthesis.vhd/v"

vhdl/verilog work (or library name) "testbench.vhd/v"

Open the ISE Design Suite Command Prompt and run the following commands (depending on simulation language):

Verilog: fuse -intstyle ise -incremental -lib unisims_ver -lib unimacro_ver -lib xilinxcorelib_ver -lib secureip -o x_synthesis.exe -prj new.prj work.<testbench> work.glbl
VHDL: fuse -intstyle ise -incremental -lib unisim -lib unimacro -lib xilinxcorelib -lib secureip -o x_synthesis.exe -prj new.prj work.<testbench>

Run the generated simulation executable x_synthesis.exe -gui to open ISIM GUI.
The outputted waveform is the Post-Synthesis Simulation for the design under test.


适用于


设计工具

ISE Design Suite - 13.1
ISE Design Suite - 13.2
ISE Design Suite - 13.3
ISE Design Suite - 13.4
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐