(self, address)
| 856 | return ''.join(ascii_content) |
| 857 | |
| 858 | def ReadAsciiString(self, address): |
| 859 | string = "" |
| 860 | while self.IsValidAddress(address): |
| 861 | code = self.ReadU8(address) |
| 862 | if 0 < code < 128: |
| 863 | string += chr(code) |
| 864 | else: |
| 865 | break |
| 866 | address += 1 |
| 867 | return string |
| 868 | |
| 869 | def IsProbableASCIIRegion(self, location, length): |
| 870 | ascii_bytes = 0 |
no test coverage detected