使用相对指针寻址数据(x86-32 汇编器)
我正在使用 32 位 x86 汇编器进行编写,并且不太确定如何寻址始终与代码具有相同关系的数据。我必须使用EIP来计算绝对地址,还是有更好的方法?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于操作系统。通常段寄存器DS(数据段)和CS(代码段)有不同的值。
因此,您可以使用 cs 前缀,例如:
在这种情况下,默认前缀是 ds 段寄存器。
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.
您可以使用与位置无关的代码:
或将其与增量偏移量一起使用
You can use position-independent code:
or use the same with delta-offsets