examining memory with 'x'
- Lets suppose we have a memory area and we want to view its contents.
- We will use the 'x' command. to view 100 chars starting at 'arr':
x/80c arr
- To view 20 4-byte integers in decimal format:
x/20dw arr
- To view 10 long long (8-byte) integers in hex format:
x/10xg arr
Originally written by
guy keren