2021年6月25日 星期五

HDLBits 32bit LFSR

HDLBits 32bit LFSR

See Lfsr5 for explanations.

Build a 32-bit Galois LFSR with taps at bit positions 32, 22, 2, and 1.

參考 5bit LFSR,實現一個 32bit LFSR,

抽頭點為32,22,2,1。

提示:32bit 的 LFSR 最好使用向量實現



module top_module(
    input clk,
    input reset,    // Active-high synchronous reset to 32'h1
    output [31:0] q
); 
    reg [31:0] q_next;
  //Build a 32-bit Galois LFSR with taps at bit positions 32, 22, 2, and 1. 
    //bit positions 32-1=31, 22-1=21, 2-1=1, and 1-1=0.
    always @ (*)
        begin
            q_next = {q[0], q[31:1]};
            q_next[31] = q[0] ^ 1'b0;
            q_next[21] = q[22] ^ q[0];
            q_next[1] = q[2] ^ q[0];
            q_next[0] = q[1] ^ q[0];
        end 
    
    always @ (posedge clk)
        begin
        if (reset)
                q <= 32'h1;
            else
                q <= q_next;
        end
endmodule

沒有留言:

張貼留言

2026 作業3 RFID+ Telegram 練習

 2026 作業3  RFID+ Telegram  練習 (Wokwi 與 Telegram 二者溝通訊息反映比較慢 ) 歡迎 Alex 使用 RFID 控制系統 /on : 開啟 LED /off : 關閉 LED /flash : 閃爍模式 /timer : 開啟 5 秒 ...