清秀黄豆

文章
4
资源
0
加入时间
3年0月27天

专业英语3

The Evolution of Computer       The first large-scale electronic computer was the Electronic Numerical Integrator and Computer(ENIAC),whic

【转载】verilog中模块和模块间的组合

通常利用写顶层文件来例化各个子模块,定义中间端口去例化子模块间的数据传递。例如module test(input a,inputb,outputc);wire c;wire e;test1 inst(.a1(a), //input.b1(b), //input.c1(e) //output);test2 inst(.a2(a), //input.b2(e), /...