I'm starting to learn to read opcodes and I've found this:
89 75 95 movl %esi, var_6ch
where var_6ch
is at ebp-0x6c
Which part of 89 75 95
indicates the 'address' ebp-0x6c
? I've found on internet that 89
is the code for movl, maybe 75 is for register esi? or maybe the 2 bytes encode these 2 informations.
Where can I find more about this and quick search these things?