lfsr6s3.v

来自「《数字信号处理的FPGA实现》代码」· Verilog 代码 · 共 26 行

V
26
字号
//*********************************************************
// IEEE STD 1364-1995 Verilog file: lfsr6s3.v 
// Author-EMAIL: Uwe.Meyer-Baese@ieee.org
//*********************************************************
module lfsr6s3 (clk, y); //----> Interface

  input          clk;
  output [6:1]  y;  // Result

  reg [6:1] ff; // Note that reg is keyword in Verilog and 
                               // can not be variable name

  always @(posedge clk) begin // Implement three-step 
    ff[6] <= ff[3];           // length-6 LFSR with xnor; 
    ff[5] <= ff[2];         // use non-blocking assignments
    ff[4] <= ff[1];           
    ff[3] <= ff[5] ~^ ff[6];
    ff[2] <= ff[4] ~^ ff[5];
    ff[1] <= ff[3] ~^ ff[4];
  end

  assign  y = ff; 

endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?