我有以下彙編指令(你還可以在標題看到的):指令是什麼LODS DWORD PTR DS:[ESI]?
LODS DWORD PTR DS:[ESI]
在一個網站上我已經發現了:
The lods instruction is unique among the string instructions.
You will never use a repeat prefix with this instruction.
The lods instruction copies the byte or word pointed at by ds:si
into the al, ax, or eax register, after which it increments or
decrements the si register by one, two, or four.
但我並沒有說明白點:我怎麼能確定在哪個寄存器al,ax或eax中複製了字節或字。
有人可以解釋給我的操作更
此外,您不使用rep前綴的原因是您需要在重複之前以某種方式檢查加載的值。 –