zoukankan      html  css  js  c++  java
  • ISE Simulator综合后仿真 How do you run Post Synthesis Simulation in ISE Project Navigator?

    转自: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:
    1. Create the project in ISE Project Navigator and add all the required modules including the testbench.
    2. Set the module (DUT) you want to perform Post-Synthesis Simulation as the Top Module.
    3. Run Synthesis.
    4. 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.
    5. 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"


    6. 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>


    7. Run the generated simulation executable x_synthesis.exe -gui to open ISIM GUI.
    8. 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

  • 相关阅读:
    静态资源的映射
    controller进行数据保存
    接收的参数为日期类型时
    分页助手(pagehelper)
    逆向工程(generator)----->由表帮我们来生成dao、bean、xml
    动态sql语句(即sql语句的拼接)
    添加对象时如何把生成的id返回
    $和#的区别
    关联查询
    字段与属性不匹配的解决方法
  • 原文地址:https://www.cnblogs.com/youngforever/p/3104681.html
Copyright © 2011-2022 走看看