| 46 | |
| 47 | |
| 48 | class FunctionStarts: |
| 49 | |
| 50 | def __init__(self, lc, data): |
| 51 | self.offset = lc.data_offset |
| 52 | self.size = lc.data_size |
| 53 | self.content = data[self.offset : self.offset + self.size] |
| 54 | |
| 55 | # def __str__(self): |
| 56 | # return (" FunctionStarts: content {}".format(self.content)) |
| 57 | |
| 58 | |
| 59 | class Symbol64(object): |