First of all I'm familiar with the concept of how negative numbers are presented by two's complement system and I know that when there's a jump instruction(short or near) the offset it contains will always be added to EIP register and there isn't a case where the offset is subtracted from EIP register(if I'm right!). but I wonder if in case of two following kinds of addressing with a negative presented offset, it'll be the same as the case of how the offset in a jump instruction is used that is always being added to the base and not subtracted in any case?

(in GASM format):
"base_address(offset,index register,scale)" like:

%eax(-4,%ebx,1)

"offset(base register)" like:

-4(%eax)

will a binary number be added to eax register or subtracted?

link|improve this question

80% accept rate
See also stackoverflow.com/questions/4715521/… – Jester Jan 20 '11 at 23:33
what does it have to do with that question?! – Pooria Jan 21 '11 at 5:23
feedback

1 Answer

up vote 1 down vote accepted

-4 will be added to the value of the register, decreasing it by 4. Offsets are always added.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.