lfsr: Remove debug prints

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-06-11 13:03:10 -07:00
parent f7315b7675
commit 79a1438230
2 changed files with 0 additions and 2 deletions

View File

@@ -100,7 +100,6 @@ def scramble_pcie_gen3(data, state=0x1efedc, poly=0x524042):
b = b | (1 << i)
else:
state = state >> 1
print(hex(state), hex(b))
data_out.append(b ^ d)
return data_out

View File

@@ -88,7 +88,6 @@ def scramble_pcie_gen3(data, state=0x1efedc, poly=0x524042):
b = b | (1 << i)
else:
state = state >> 1
print(hex(state), hex(b))
data_out.append(b ^ d)
return data_out