summaryrefslogtreecommitdiff
path: root/gr-sounder/src/fpga/lib/lfsr.v
diff options
context:
space:
mode:
Diffstat (limited to 'gr-sounder/src/fpga/lib/lfsr.v')
-rw-r--r--gr-sounder/src/fpga/lib/lfsr.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-sounder/src/fpga/lib/lfsr.v b/gr-sounder/src/fpga/lib/lfsr.v
index 6ae967ba9..bd0743e9c 100644
--- a/gr-sounder/src/fpga/lib/lfsr.v
+++ b/gr-sounder/src/fpga/lib/lfsr.v
@@ -36,10 +36,10 @@ module lfsr(clk_i,rst_i,ena_i,strobe_i,mask_i,pn_o);
always @(posedge clk_i)
if (rst_i | ~ena_i)
- shifter <= 1;
+ shifter <= #5 1;
else
if (strobe_i)
- shifter <= {shifter[width-2:0],parity};
+ shifter <= #5 {shifter[width-2:0],parity};
assign pn_o = shifter[0];