摘要: 本文是基于svtag(tags)的常规使用方法介绍, 如果还没建立tags 可以参考:sytemverilog tag: https://www.cnblogs.com/freeic/p/7144248.html verilog tag: https://www.cnblogs.com/freeic 阅读全文
posted @ 2022-06-25 22:57 freeic 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 原文地址:牛人对IC验证的独特理解(转)作者:liu_uestc 下面这些问题和回答是基于我个人对验证(主要是动态仿真验证)的理解,可能有理解的不到位、理解有偏差的地方,欢迎大家指正。 Q:验证的目的? A:发现Bug,发现所有的Bug,或者证明没有Bug(转自夏晶的帖子) Q:对验证工程师的要求? 阅读全文
posted @ 2019-10-24 09:25 freeic 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: 写这个文档的目的是让大家对搭建SoC项目的Testbench有一个比较清晰的认识,可以根据这个文档来一步一步的搭建起一个SoC项目的基本的testbench。本文档重点是指导大家搭建基本环境,以及能解决搭建Testbench过程中容易遗漏的问题或者容易遇到的“地雷”。 我搭的SoC项目的testbe 阅读全文
posted @ 2019-10-24 09:23 freeic 阅读(3465) 评论(0) 推荐(0) 编辑
摘要: .vimrc "show line numberset number set autoindentset smartindent "colorscheme setsyntax enablesyntax on"if has('gui_running')" set background=dark"els 阅读全文
posted @ 2019-09-29 14:40 freeic 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 1. Function: This addon allows using % to jump between matching keywords as Vim already does for matching parentheses/brackets. Many syntax files incl 阅读全文
posted @ 2019-09-29 14:09 freeic 阅读(774) 评论(0) 推荐(0) 编辑
摘要: 1. 插件source code https://github.com/vhda/verilog_systemverilog.vim 2. 安装插件 解压后 copy verilog_systemverilog.vim文件夹到 :~/.vim/bundle Note: 前提是安装了pathogen插 阅读全文
posted @ 2019-09-29 13:16 freeic 阅读(1807) 评论(0) 推荐(0) 编辑
摘要: 1) Github 插件管理sourcecode: https://github.com/tpope/vim-pathogen 2)有无插件管理使用对比 之前安装插件经常是 copy 对应目录下的xx.vim文件到 ~/.vim目录下的对应文件夹; 用了这个插件管理的,就只需要将整体目录copy到~ 阅读全文
posted @ 2019-09-29 12:13 freeic 阅读(327) 评论(0) 推荐(0) 编辑
摘要: ##linux normal usagealias gv gvimalias gvd gvimdiffalias gvdif gvimdiff ##open two windows and split vertically alias gvh 'gvim -o'##open two windows 阅读全文
posted @ 2018-12-26 12:56 freeic 阅读(323) 评论(0) 推荐(0) 编辑
摘要: source /etc/csh.cshrc source ~/.alias ###set path for self usaged scripts set path = ($path /home/xin.li01/self_scr/usaged)set path = ($path ./)###aut 阅读全文
posted @ 2018-07-05 15:19 freeic 阅读(764) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/perl use File::Basename; my $result_dir = $ARGV[0]; # Blow is the testlog directory #TODO:you may need update based your config my $result_ 阅读全文
posted @ 2018-06-20 18:07 freeic 阅读(241) 评论(0) 推荐(0) 编辑