prep7.v
来自「多个Verilog和vhdl程序例子」· Verilog 代码 · 共 27 行
V
27 行
// PREP Benchmark 7, Sixteen Bit Counter
/* PREP7 contains a sixteen bit counter
Copyright (c) 1994 Synplicity, Inc.
You may distribute freely, as long as this header remains attached. */
module prep7(Q, CLK, RST, LD, CE, D);
output [15:0] Q;
input CLK, RST, LD, CE;
input [15:0] D;
reg [15:0] Q;
always @ (posedge RST or posedge CLK)
begin
if (RST) // reset logic
Q = 0;
else if (LD) // load
Q = D;
else if (CE) // if count enable, count
Q = Q + 1;
end
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?