(self)
| 186 | self.rtype = tmp & 0xf |
| 187 | |
| 188 | def __str__(self): |
| 189 | return """Relocation header: |
| 190 | address = {} |
| 191 | symbolnum = {} |
| 192 | pcrel = {} |
| 193 | length = {} |
| 194 | extern = {} |
| 195 | rtype = {} |
| 196 | """.format(hex(self.address), self.symbolnum, self.pcrel, self.length, self.extern, self.rtype) |
| 197 | |
| 198 | |
| 199 | class DySymbolTable: |