Saving an initial python script for parsing states.

This commit is contained in:
Alex Huddleston 2017-11-24 20:05:17 -06:00
parent ed5b684eb1
commit 600333eeaf

4
test.py Normal file
View file

@ -0,0 +1,4 @@
with open('data/0.bin', 'rb') as f:
data = f.read()
print(hex(int.from_bytes(data, byteorder='little', signed=False)))