mirror of
https://github.com/jhshi/openofdm.git
synced 2025-04-20 00:31:01 +00:00
remve unused variable in descramble.v
This commit is contained in:
parent
436aa53ea1
commit
c0ad55abb6
@ -14,7 +14,6 @@ module descramble
|
||||
reg [6:0] state;
|
||||
reg [4:0] bit_count;
|
||||
|
||||
reg [5:0] init_bits;
|
||||
reg inited;
|
||||
|
||||
wire feedback = state[6] ^ state[3];
|
||||
@ -23,7 +22,6 @@ always @(posedge clock) begin
|
||||
if (reset) begin
|
||||
bit_count <= 0;
|
||||
state <= 0;
|
||||
init_bits <= 0;
|
||||
inited <= 0;
|
||||
out_bit <= 0;
|
||||
output_strobe <= 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user