读书人

请教quot;REMOTE_CODE_START equ this byt

发布时间: 2012-03-09 16:54:57 作者: rapoo

请问"REMOTE_CODE_START equ this byte"中的"this byte"是什么意思?
如题

[解决办法]
What's following statement??
You ate it up??

e.g.

rcs equ this byte
rcsw dw 0abh

Note:
rcs and rcsw represent the same address in the memory.
whilst you wanna use them, you can do something like this:
mov al,rcs ; means rcs is a type of byte.
or
mov ax,rcsw ; means rcsw is a type of word.


You can take advantage of it to avoid using operator PTR instead.
[解决办法]
REMOTE_CODE_START 指向 _lpLoadLibrary ,便于定位以_lpLoadLibrary

开头的内存快。
[解决办法]
you'll know when you need it.
Keep that in mind.
[解决办法]
rcs equ this byte
rcsw dw 0abh


rcs 的偏移和 rcsw 的偏移 是一样的.

就是干这事的.

读书人网 >汇编语言

热点推荐