What is the size of each asm instruction? Every instruction takes how many bytes? 8 bytes? Four for the opcode and Four for the argument? What happens when you have one opcode and 2 arguments, in mov, for example? Do they have a fixed size in memory or do they vary? Does EIP have anything to do with this, of its value is always incremented by one, being totally independent of what kind of instruction it is passing by?
I ask this as when I was reading http://en.wikibooks.org/wiki/X86%5FDisassembly/Functions%5Fand%5FStack%5FFrames , I stumbled across the fact that it seems a call instruction is equivalent to a push and jmp instruction.
call MYFUNCTION
mov my_var, eax
being the same as
push [eip + 2];
jmp MYFUNCTION;
mov my_var, eax
When we're pushing [eip + 2] on the stack, to what value are we pointing then? To the line right next to "jmp MYFUNCTION", mov my_var eax, right?
ps: MSVC++ flags an error on the first line, as it says eip is undefined. It works for eax, esp, ebp, etc. What am I doing wrong?