scrambler: Fix wrone assignment type

This process uses the wrong assignment type. Fix it.

Fixes: 12a4678 ("Add (de)scrambling support")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
Sean Anderson 2022-11-02 00:16:43 -04:00
parent f4c2b1eb1f
commit ec08287853
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,6 @@ module scramble (
end
always @(posedge clk)
lfsr = { lfsr[9:0], lfsr_next };
lfsr <= { lfsr[9:0], lfsr_next };
endmodule