Added len and getitem to segments

This commit is contained in:
Rob McMullen 2015-10-14 15:02:02 -07:00
parent 88c271a4ae
commit 216f31b173

View File

@ -196,6 +196,12 @@ class ObjSegment(object):
s += " " + self.error
return s
def __len__(self):
return len(self.data)
def __getitem__(self, val):
return self.data[val]
class AtariDosFile(object):
"""Parse a binary chunk into segments according to the Atari DOS object
file format.