scramble: Fix initial lfsr value
I was missing a bit. Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
fb588994b7
commit
83216ea1e9
|
@ -13,7 +13,7 @@ module scramble (
|
|||
|
||||
reg lfsr_next;
|
||||
reg [10:0] lfsr;
|
||||
initial lfsr = 10'h3ff;
|
||||
initial lfsr = 11'h7ff;
|
||||
|
||||
always @(*) begin
|
||||
lfsr_next = lfsr[8] ^ lfsr[10];
|
||||
|
|
Loading…
Reference in New Issue