6ae967ba936affcd1c94adbe7b9e41514ec7277c
[debian/gnuradio] / gr-sounder / src / fpga / lib / lfsr.v
1 // -*- verilog -*-
2 //
3 //  USRP - Universal Software Radio Peripheral
4 //
5 //  Copyright (C) 2007 Corgan Enterprises LLC
6 //
7 //  This program is free software; you can redistribute it and/or modify
8 //  it under the terms of the GNU General Public License as published by
9 //  the Free Software Foundation; either version 2 of the License, or
10 //  (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 51 Franklin Street, Boston, MA  02110-1301  USA
20 //
21
22 module lfsr(clk_i,rst_i,ena_i,strobe_i,mask_i,pn_o);
23    parameter width = 16;
24
25    input clk_i;
26    input rst_i;
27    input ena_i;
28    input strobe_i;
29    input [width-1:0] mask_i;
30    
31    output pn_o;
32
33    reg  [width-1:0] shifter;
34
35    wire parity = ^(shifter & mask_i);
36    
37    always @(posedge clk_i)
38      if (rst_i | ~ena_i)
39        shifter <= 1;
40      else
41        if (strobe_i)
42          shifter <= {shifter[width-2:0],parity};
43
44    assign pn_o = shifter[0];
45    
46 endmodule // lfsr