摘要: 引用:https://blog.csdn.net/weiqi7777/article/details/78636903 irun支持MSIE编译,MSIE的全称是 multi-snapshot incremental elaboration。将多个编译好的snapshot,组合成一个最终的snaps 阅读全文
posted @ 2020-12-23 11:26 DavidWei0504 阅读(4679) 评论(0) 推荐(0) 编辑
摘要: 断言assertion被放在verilog设计中,方便在仿真时查看异常情况。当异常出现时,断言会报警。一般在数字电路设计中都要加入断言,断言占整个设计的比例应不少于30%。以下是断言的语法: 1. SVA的插入位置:在一个.v文件中: module ABC (); rtl 代码 SVA断言 endm 阅读全文
posted @ 2019-07-18 16:05 DavidWei0504 阅读(2059) 评论(0) 推荐(0) 编辑
摘要: 文章转载地址:http://www.bbioo.com/lifesciences/40-114265-1.html LSF系统介绍 http://scc.ustc.edu.cn/zh_CN/ 中科大超算中心 http://www.sccas.cn/gb/index.html 中科院超算中心 http 阅读全文
posted @ 2017-06-21 17:06 DavidWei0504 阅读(8706) 评论(0) 推荐(0) 编辑
摘要: 可以参考: http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel/lib/Spreadsheet/WriteExcel.pm #!/usr/bin/perl use strict; use Spreadsheet::WriteExcel; 阅读全文
posted @ 2017-05-12 17:42 DavidWei0504 阅读(2798) 评论(0) 推荐(0) 编辑
摘要: introduction of sendmail example send mail to multi-receiver 阅读全文
posted @ 2017-05-12 17:30 DavidWei0504 阅读(278) 评论(0) 推荐(0) 编辑
摘要: dlopen和dlsym是用于打开动态链接库中的函数,将动态链接库中的函数或类导入到本程序中: dlopen函数: 功能:打开一个动态链接库 包含头文件: #include <dlfcn.h> 函数定义: void * dlopen( const char * pathname, int mode 阅读全文
posted @ 2017-04-21 15:02 DavidWei0504 阅读(2772) 评论(0) 推荐(0) 编辑
摘要: perl处理文件的时候最好添加上 处理的时间戳,获取系统的时间又多种方法,但是反引号是最原始的,不需要其他外界条件和lib的支持。 my $now = `date "+%F %T" print FH $now; 结果为:2014-04-13 21:58:21 #my $time_string = ` 阅读全文
posted @ 2017-03-27 14:25 DavidWei0504 阅读(764) 评论(0) 推荐(0) 编辑
摘要: 1、跳转命令 ‘w'单词前进,'b'单词后退,'e'单词前进,‘ge’单词后退,存在单词词首词尾区别,'W''B''E''gE'将不以单词区分,以空格区分 ‘$’行尾,'^'非空白行首,'0'行首 ‘f’/‘F’:行内快速跳转字符(右/左),如"fa",跳转到本行光标第一个a字符处,可加前缀表次数, 阅读全文
posted @ 2017-03-15 15:49 DavidWei0504 阅读(1773) 评论(0) 推荐(0) 编辑
摘要: 在VIM中进行文本替换: 1. 替换当前行中的内容: :s/from/to/ (s即substitude) :s/from/to/ : 将当前行中的第一个from,替换成to。如果当前行含有多个 from,则只会替换其中的第一个。 :s/from/to/g : 将当前行中的所有from都替换成to。 阅读全文
posted @ 2017-02-10 13:32 DavidWei0504 阅读(37129) 评论(0) 推荐(1) 编辑
摘要: 1 准备工作 首先, 我们打开 VIM, 输入一段文本, 用于今天的演示: this is a test 2 查找替换 按几下 ESC 进入 Normal 模式, 输入以下命令: :%s/ /\r/g 。 回车后得到的效果如下: this is a test 解说: 这条命令的作用是, 将文章中所有 阅读全文
posted @ 2017-01-04 10:45 DavidWei0504 阅读(546) 评论(0) 推荐(0) 编辑