1. 首页
  2. 课程学习
  3. 专业指导
  4. 王金明:《VerilogHDL程序设计教程》

王金明:《VerilogHDL程序设计教程》

上传者: 2021-01-08 08:39:51上传 PDF文件 148.4KB 热度 15次
完整版学习教程 王金明 第一版的 【例 3.1】4 位全加器 module adder4(cout,sum,ina,inb,cin); output[3:0] sum; output cout; input[3:0] ina,inb; input cin; assign {cout,sum}=ina+inb+cin; endmodule 【例 3.2】4 位计数器 module count4(out,reset,clk); output[3:0] out; input reset,clk; reg[3:0] out; always @(posedge clk) begin if (reset)
用户评论