How to check bytes toward the other direction in gdb? -


Check the bytes at address

x / 4x x

xxx Will do

How to check the bytes at a lower address?

Reducing the number of buses you want from the preceding bytes xxx:

  (gdb) x / 4x 0x13b3da00 0x13b3da00: 0x004cc630 0x00000000 0x13af3ba0 0x00000000 (GDB) x / 4x 0x13b3da00-4 0x13b3d9fc: 0x00000000 0x004cc630 0x00000000 0x13af3ba0 (GDB) x / 4x 0x13b3da00-8 0x13b3d9f8: 0x00000000 0x00000000 0x004cc630 0x00000000    

Comments