5 lines
140 B
Python
5 lines
140 B
Python
|
|
f = open(r'k:\ghidra\Crusader_Decomp\tier4_ghidra.txt', 'r')
|
||
|
|
content = f.read()
|
||
|
|
f.close()
|
||
|
|
print('SIZE=' + str(len(content)))
|
||
|
|
print(content)
|