summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tb/sim/descifrador.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tb/sim/descifrador.py b/tb/sim/descifrador.py
index 2253e6f..0e0fb71 100644
--- a/tb/sim/descifrador.py
+++ b/tb/sim/descifrador.py
@@ -9,12 +9,8 @@ mem_dumps = [range(START, START + SIZE)]
def final():
words = []
- i = 0
with open(FILE, 'rb') as file:
while data := file.read(4):
words.append(int.from_bytes(data, 'little') ^ 0x00ffffff)
- i += 1
- if i == 10:
- break
assert_mem(START, words)