Print ASCII string starting at specified address.
(self, address)
| 3829 | return self.do_display_ascii(address) |
| 3830 | |
| 3831 | def do_display_ascii(self, address): |
| 3832 | """ |
| 3833 | Print ASCII string starting at specified address. |
| 3834 | """ |
| 3835 | address = self.ParseAddressExpr(address) |
| 3836 | string = self.reader.ReadAsciiString(address) |
| 3837 | if string == "": |
| 3838 | print("Not an ASCII string at %s" % self.reader.FormatIntPtr(address)) |
| 3839 | else: |
| 3840 | print("%s\n" % string) |
| 3841 | |
| 3842 | def do_dsa(self, address): |
| 3843 | """ see display_stack_ascii""" |
no test coverage detected