Add verbose structure output.
This commit is contained in:
parent
28480970c4
commit
4988fc7b63
@ -79,6 +79,13 @@ class Gcd:
|
|||||||
tlv_length += tlv.length
|
tlv_length += tlv.length
|
||||||
last_tlv = tlv.type_id
|
last_tlv = tlv.type_id
|
||||||
|
|
||||||
|
def print_struct_full(self):
|
||||||
|
"""
|
||||||
|
Prints the structure of the parsed GCD file
|
||||||
|
"""
|
||||||
|
for i, tlv in enumerate(self.struct):
|
||||||
|
print("#{:03d}: {}".format(i, tlv))
|
||||||
|
|
||||||
def validate(self, print_stats: bool=False):
|
def validate(self, print_stats: bool=False):
|
||||||
"""
|
"""
|
||||||
Checks and verifies all checksums in the GCD.
|
Checks and verifies all checksums in the GCD.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user