Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- TASM 2.x / MASM 6.x Assembly Language - <b>lodsd load string doubleword (386) flags: o d i t s z a p c</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
LODSD             Load String Doubleword (386)       Flags: O D I T S Z A P C

LODSD

           Logic:        EAX . DWORD PTR (DS:SI)
                         if DF = 0
                             SI . SI + 4
                         else
                             SI . SI - 4

     LODSD loads a doubleword from the memory location at DS:SI into the EAX
     register. SI is then incremented if the direction flag is cleared or
     decremented if it is set.

  --------------------------------------------------------------------------
   Operands                   Clocks   Transfers  Bytes  Example
   LODSD                      5 (386)      4        1    LODSD
  --------------------------------------------------------------------------

        Note:          This instruction can be used with a REP prefix.
                       Load CX with the number of times to repeat the
                       instruction. You can only use LODSD on the 80386.

See Also: REP STOSD

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson