序列信号发生器-移位寄存器构成
电路工作频率高,缺点:移位寄存器长度取决于序列长度,电路占用面积大module signal_maker(clk,reset,dout,load,din,d); parameter width = 4; input clk,reset,load; input [width-1:0] din; output [width-1:0] dout; output d; reg [width-1:0] dout; always @ (posedge clk) if(reset) dout