vsim - The vsim command invokes the VSIM simulator

-L <library_name> …

  (optional) Specifies the library to search for design units instantiated from Verilog and for VHDL default component binding. If multiple libraries are specified, each must be preceded by the -L option.

-t [<multiplier>]<time_unit>
  (optional) Specifies the simulator time resolution. <time_unit> must be one of the following: 
    fs, ps, ns, us, ms, sec
  The default is 1ns; the optional <multiplier> may be 1, 10 or 100.

  Note that there is no space between the multiplier and the unit (for example, 10fs, not 10 fs).

 -assertdebug

  keep data for debuging assertion failures.

  -debugdb=<db_pathname>

  (optional) Instructs Questa SIM to generate a database of connectivity information to be used for post-sim debug in the Dataflow and Schematic windows. The database pathname should have a .dbg extension. If a database pathname is not specified, Questa SIM creates a database file named vsim.dbg in the current directory.

  An existing .dbg file will be reused and a note printed to the transcript when the -debugdb switch is specified and your design has not changed since the database was created.

# compile testbench file

vcom -93 -explicit -work work $srcpath_0/tb_xxx.vhd 

# run simulation

vsim -L xxx -t 1ps tb_xxx

最新文章

  1. quickSort算法导论版实现
  2. Java基础之类Class使用
  3. WindowsService 安装 cmd
  4. java 中List.subList 总结
  5. js代码实现下拉菜单
  6. 编写基于jQuery的插件的方法
  7. c语言内存分配-malloc
  8. CentOS安装VSFTP及配置用户
  9. nginx+php-fpm 502 bad gateway
  10. Muduo-Base-Atomic
  11. Codeforces 159D Palindrome pairs
  12. [.net 面向对象程序设计深入](13)实战设计模式——设计模式使用场景及原则
  13. CSS3-loading动画(一)
  14. byte和长度为8的boolean数组互相转换
  15. Ocelot + Consul + Registrator 基于Docker 实现服务发现、服务自动注册
  16. Vue(小案例_vue+axios仿手机app)_购物车(二模拟淘宝购物车页面,点击加减做出相应变化)
  17. beego学习2 控制器与路由
  18. jsp基础语言-jsp表达式
  19. docker配置phpadmin需要注意的地方
  20. 2019.03.28 bzoj3598: [Scoi2014]方伯伯的商场之旅(带权中位数+数位dp)

热门文章

  1. 【转】上拉下拉电阻、I/O输出(开漏、推挽等)
  2. PAT_A1142#Maximal Clique
  3. Python 文件操作 day2
  4. [bzoj3029] 守卫者的挑战 (概率期望dp)
  5. java并发之并发工具
  6. 洛谷—— P2647 最大收益
  7. WinForm使用CefSharp内嵌chrome浏览器
  8. Scrapy源代码分析-经常使用的爬虫类-CrawlSpider(三)
  9. Linux命令(十)——Shell程序设计一(变量与操作符)
  10. leetCode 74.Search a 2D Matrix(搜索二维矩阵) 解题思路和方法