python-validity/util.py
Viktor Dragomiretskyy a7e203f958 First commit
2019-05-20 01:38:13 +12:00

8 lines
137 B
Python

from struct import unpack
def assert_status(b):
s,=unpack('<H', b[:2])
if s != 0:
raise Exception('Failed: %04x' % s)