accumulater.v
来自「Verilog实现的DDS正弦信号发生器和测频测相模块」· Verilog 代码 · 共 18 行
V
18 行
module Accumulater(Clock, Base, Increment);
input Clock;
output [29:0] Base;
input [21:0] Increment;
//wire Clock;
reg [29:0] Base;
wire [21:0] Increment;
//wire [31:0] temp;
//assign temp = Increment;
always @(posedge Clock)
begin
Base <= Base + Increment;
end
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?