X86-assembly/Instructions/lodsb

From aldeid
Jump to navigation Jump to search
You are here:
lods[b|d|w]

Description

Loads a byte (B), word (W), or doubleword (D) from the source operand into the AL, AX, or EAX register, respectively.

Syntax

LODS m8
Load byte at address DS:(E)SI into AL
LODS m16
Load word at address DS:(E)SI into AX
LODS m32
Load doubleword at address DS:(E)SI into EAX
LODSB
Load byte at address DS:(E)SI into AL
LODSW
Load word at address DS:(E)SI into AX
LODSD
Load doubleword at address DS:(E)SI into EAX

Comments