-
Notifications
You must be signed in to change notification settings - Fork 1
/
diff.py
52 lines (42 loc) · 1.82 KB
/
diff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from absl import app
def main(argv):
# It's a good thing we have infinite memory
with open("golden_source.bin", mode="rb") as f:
golden_source = f.read()
with open("main.bin", mode="rb") as f:
target = f.read()
print(f"Read golden_source.bin, {len(golden_source)} ({len(golden_source):04X}) bytes")
print(f"Read main.bin, {len(target)} bytes")
# The initial loader copies the data to $3F00. Then it moves
# $3F00-$5EFF to $0000-$1FFF.
# for i in range(0xC00, 0x1A85):
# if (i%16)==0:
# print()
# print(" HEX ", end="")
# print(f"{golden_source[i]:02X} ", end="")
# print()
golden_source_segment1 = golden_source[:0x2000] # 0000-1FFF
golden_source_segment2 = golden_source[0x2000:] # 5F00-BFFF
target_segment1 = target[:0x2000]
target_segment2 = target[0x5F00:]
# dos = golden_source_segment2[0xB600 - 0x5F00:]
# for b in dos:
# print(f"{b:02X} ", end="")
# print()
# print(f"doslen {len(dos)}")
print("Comparing segment 1 (0000-1FFF)...")
for i, b in enumerate(golden_source_segment1):
if golden_source_segment1[i] != target_segment1[i]:
print(f"Golden source and target differ at location {i:04X}")
print(f"Golden source: {golden_source_segment1[i]:02X}")
print(f" Target: {target_segment1[i]:02X}")
break
print("Comparing segment 2 (5F00-)...")
for i, b in enumerate(golden_source_segment2):
if golden_source_segment2[i] != target_segment2[i]:
print(f"Golden source and target differ at location {i+0x5F00:04X}")
print(f"Golden source: {golden_source_segment2[i]:02X}")
print(f" Target: {target_segment2[i]:02X}")
break
if __name__ == "__main__":
app.run(main)