I'm writing in 32-bit x86 assembler, and I'm not quite sure how to address data that is always in the same relation to the code. Do I have to use EIP to calculate the absolute address, or is there a better way?
|
feedback
|
|
You can use position-independent code:
or use the same with delta-offsets
| |||
|
feedback
|
|
Depend of OS. Normally have segment registers DS (data segment) and CS (code segment) different values. So you can use cs prefix like:
In that case the default prefix is ds segment register. | |||
feedback
|