This is a very naive question about IDA Pro. Once the IDA debugger started, I would like to be able to type a memory address (or a memory zone) and look easily at the content of it (in various format). With gdb you would do print /x *0x80456ef or, if you want a wider zone, x /6x 0x80456ef.
So, what is the best way to display the memory content from the IDA debugger ?
Dword(0x80456ef)in the IDC and it worked. Thanks a lot ! But, does someone knows where we can find the complete language usable in the IDC ? Is it matching exactly the idapython language ? Or, is it more ? – perror Apr 23 '13 at 08:31GetManyBytes(0x804928c, 10, 1)to get it to work. – perror Apr 23 '13 at 08:34idc.idcfor full docs. – Igor Skochinsky Apr 23 '13 at 12:57