伪随机比特发生器.txt
上传用户:easylife05
上传日期:2013-03-21
资源大小:42k
文件大小:2k
源码类别:

VHDL/FPGA/Verilog

开发平台:

C/C++

  1. -- Pseudo Random Bit Sequence Generator
  2. -- This design entity uses a single conditional signal assignment statement to describe a PRBSG register. 
  3. -- The length of the register and the two tapping points are defined using generics. 
  4. -- The '&' (aggregate) operator is used to form a vector comprising the shifted contents of the regsiter combined with the XOR feedback which is clocked into the register on the rising edge. 
  5. -- The following Design Entity defeines a parameterised Pseudo-random
  6. -- bit sequence generator, it is useful for generating serial or parallel test waveforms
  7. -- (for paralle waveforms you need to add an extra output port)
  8. -- The generic 'length' is the length of the register minus one.
  9. -- the generics 'tap1' and 'tap2' define the feedabck taps
  10. -- dowload from: www.fpga.com.cn & www.pld.com.cn
  11. library ieee;
  12. use ieee.std_logic_1164.all;
  13. ENTITY prbsgen IS
  14.    GENERIC(length : Positive := 8; tap1 : Positive := 8; tap2 : Positive := 4);
  15.    PORT(clk, reset : IN Bit; prbs : OUT Bit);
  16. END prbsgen;
  17. ARCHITECTURE v2 OF prbsgen IS
  18.    --create a shift register
  19.    SIGNAL prreg : Bit_Vector(length DOWNTO 0);
  20. BEGIN
  21.    --conditional signal assignment shifts register and feeds in xor value
  22.    prreg <= (0 => '1', OTHERS => '0') WHEN reset = '1' ELSE   --set all bits to '0' except lsb
  23.             (prreg((length - 1) DOWNTO 0) & (prreg(tap1) XOR prreg(tap2)))  --shift left with xor feedback
  24.             WHEN clk'EVENT AND clk = '1'
  25.             ELSE prreg;
  26.    --connect msb of register to output
  27.    prbs <= prreg(length);
  28. END v2;