Altera Home Page
文档资料 许可
在线购买 下载

  主页   |   产品   |   支持   |   最终市场   |   技术中心   |   教育与活动   |   公司介绍   |   在线购买  
  mySupport   |   器件   |   软件   |   IP   |   设计范例   |   参考设计  

 产品
   Quartus II
      SOPC Builder
      MAX+PLUS II
      ModelSim-Altera
  
 资源中心
      简介
      安装&许可
      脚本
       电路板设计& I/O
      网表阅读器 & 综合
      编译增强特性
      优化
      功耗管理
   TimeQuest时序分析器
      标准时序分析器
      仿真 & 确认
      片内调试
      HardCopy设计
  
 软件资源
      操作系统支持
      驱动安装
  
 下载与许可
      下载
   许可
  
 Quartus II EDA 支持
      Quartus II 接口
   综合工具
          Design Compiler
          DC FPGA
          FPGA Compiler II
          LeonardoSpectrum
          Precision RTL Synthesis
          Synplify
   仿真工具
   验证工具
   时序分析工具
   再综合工具
   电路板级工具
  
 老版软件EDA支持
      供应商类
      工具类
      功能类
  

Example of Performing a Timing Simulation of a Synplicity VHDL Design with a Custom Megafunction Variation with the ModelSim Software

To perform a timing simulation on your Synplify VHDL design using the ModelSim software once you compile your design in the Quartus II software, you can create a script that performs the following steps:

  • Compiles the <device family>_atoms.vhd and <device family>_components.vhd libraries.

  • Compiles the VHDL Output File (.vho) the Quartus II software generates during compilation. In this example, the VHDL Output File is plldesign.vho.

  • Compiles the test bench file. In this example, the test bench file name is plltest.vho.

You can simulate the sample design in the ModelSim software by using the commands shown in the following sample script:


vlib work                                            # Create working directory
vcom /quartus/eda/sim_lib/apex20ke_atoms.vhd            # Read the simulation library 
vcom /quartus/eda/sim_lib/apex20ke_components.vhd       # Read the simulation library
                                                        # /quartus/ is the path to Quartus II
vmap apex20ke work                                      # Map the family name to work library
vcom plldesign.vho                                      # Compile the VHDL Output File
vcom plltest.vhd                                        # Compile test fixture
vsim -t ps work.plltest(behave)                         # Simulate plltest with resolution in ps
add wave /plltest/*                                     # Add the port signals to the waveform view
run 1000 ns                                             # Run the

  请填写反馈意见
  注册索取最新邮件通知