4

Does IDA Pro have a memory mapping functionality similar to that in OllyDbg? If so, I can't find it. I know there is that skinny bar at the top of the screen showing where you are in the address space and where memory is allocated, but I consider that kind of inadequate. This is what the memory map looks like in OllyDbg:

enter image description here

user1354557
  • 2,413
  • 19
  • 29
Tyler Durden
  • 11,156
  • 9
  • 64
  • 126

1 Answers1

6

Program Segmentation

in View > Open Subview > Segments

but it doesn't have that detailed information as OllyDbg has.

hopperpl
  • 298
  • 3
  • 8
  • 1
    view->open subview -> segments (shift+f7 ) will have a full memory map when debugging only and only after single stepping atleast one instruction (before clicking start process you may need to set debug options events stop on debugging start ) – blabb May 23 '14 at 18:39