i have the following assembly instruction(as you can also see in the title):
LODS DWORD PTR DS:[ESI]
On one website i have found out that:
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.
But I did not the understand the point: how can i be sure in which of the registers al, ax or eax the byte or word is copied.
Can someone explain it to me in a more