摘要: perl数值进制 进制 表示 0b### 二进制 0~1 0x### 十六进制 0~F 0#### 八进制 0~7 my $num = 16 print("%b",$num); print("%o",$num); print("%x",$num); #十六进制转十进制 hex(0x###) #八进制 阅读全文
posted @ 2021-06-21 22:31 MOVIT 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 提问的智慧 How To Ask Questions The Smart Way Copyright © 2001,2006,2014 Eric S. Raymond, Rick Moen 本指南英文版版权为 Eric S. Raymond, Rick Moen 所有。 原文网址:http://ww 阅读全文
posted @ 2021-06-21 20:42 MOVIT 阅读(36) 评论(0) 推荐(0) 编辑
摘要: How To Ask Questions The Smart Way Eric Steven Raymond Thyrsus Enterprises <esr@thyrsus.com> Rick Moen <respond-auto@linuxmafia.com> Copyright © 2001, 阅读全文
posted @ 2021-06-21 20:30 MOVIT 阅读(24) 评论(0) 推荐(0) 编辑
摘要: PERL命令行 perl命令行操作需要加上-e否则会寻找perl脚本文件,命令用单引号包围,双引号会被OS认为是变量 PERL命令行参数 -n参数 -n参数相当于创建while循环 while(<>) { commands; } -p参数 -p参数创建while循环,下一步打印 while(<>) 阅读全文
posted @ 2021-06-20 15:33 MOVIT 阅读(712) 评论(1) 推荐(0) 编辑
摘要: 电子书列表 1——32 33——64 65——96 97——128 129——160 161——192 193——224 225——230 阅读全文
posted @ 2021-06-19 22:25 MOVIT 阅读(294) 评论(1) 推荐(0) 编辑
摘要: This is a most popular repository list for Perl sorted by number of stars STARS FORKS ISSUES LAST COMMIT NAME/PLACE DESCRIPTION 13791 302 17 4 months 阅读全文
posted @ 2021-06-07 06:24 MOVIT 阅读(279) 评论(0) 推荐(0) 编辑
摘要: This is a most popular repository list for VHDL sorted by number of stars STARS FORKS ISSUES LAST COMMIT NAME/PLACE DESCRIPTION 1111 194 184 4 hours a 阅读全文
posted @ 2021-06-07 06:22 MOVIT 阅读(1913) 评论(0) 推荐(0) 编辑
摘要: This is a most popular repository list for Verilog sorted by number of stars STARS FORKS ISSUES LAST COMMIT NAME/PLACE DESCRIPTION 1450 676 33 1 year, 阅读全文
posted @ 2021-06-07 06:19 MOVIT 阅读(1879) 评论(0) 推荐(0) 编辑
摘要: pins和ports区别 ports是current design(top hierachy)的IO pins是例化的模块或cell的IO ports/pins 阅读全文
posted @ 2021-05-30 14:30 MOVIT 阅读(439) 评论(0) 推荐(0) 编辑
摘要: analyze&elaborate 用法 analyze -format verilog {TOP.v module_A.v module_B.v} elaborate TOP analyze 读取source code(verilog/vhdl) 检查语法 HDL转化为二进制文件 设定define 阅读全文
posted @ 2021-05-30 14:27 MOVIT 阅读(625) 评论(0) 推荐(0) 编辑