摘要:
看雪-安全培训 ctf-wiki/README-zh_CN.md at master · ctf-wiki/ctf-wiki · GitHub CTF(Capture The Flag,夺旗赛)起源于 1996 年 DEFCON 全球黑客大会,是网络安全爱好者之间的竞技游戏。 作为一个自由的站点,围 阅读全文
摘要:
vvp的代码很长,我们可以先看重点: lexor.lex, parser.y, compile.cc, delay.cc, event.cc, schedule.cc和main.cc。处理位向量,把它们拼来接去,每位有01xz四种状态等等比较无聊。有点像时序电路和组合电路: 组合电路当然也复杂,但有 阅读全文
摘要:
Cadence Xcelium仿真环境搭建及常用Option总结_元直的博客 SystemC中文教程一@博客园 SystemC: an Introduction for beginners (electrosofts.com) SystemC恐怕前景堪忧。1. 现在就有systemc.org和sys 阅读全文
摘要:
ffmpeg的安装目录下有个ffmpeg-all.html,巨长无比,下面是它的摘录。 ffmpeg [global_options] {[input_file_options] -i input_url} ... {[output_file_options] output_url} ... ffm 阅读全文
摘要:
在 好懂的Quine-McCluskey算法 里我们知道所有的逻辑表达式,或者说任意的真值表,都可以用not, and和or来表示。 在电路里,除了x和y这样的变量外,我们还有常量1和0可用,即接正极VCC或接地GND. not(x) = nand(x, 1) and(x,y) = not(nand 阅读全文
摘要:
To dismiss this sad subject of the Jews for the present, I am sorry to add that in this reign they were most unmercifully pillaged [掠夺]. They were han 阅读全文
摘要:
试用Verilog中的=, <=和assign - 博客园 Synchronous sequential circuits do not process their Verilog statements in sequence within the always block. 我理解这句话的前提是用 阅读全文
摘要:
1 module cpu(input reset, clk, input[0:55] rom); 2 reg[7:0] i; // instruction 3 reg[4:0] rf[2], pc; // register file and program counter 4 always @(re 阅读全文