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>shld double precision shift left (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]
SHLD         Double Precision Shift Left (386)       Flags: O D I T S Z A P C
                                                            ?       * * ? * *
SHLD operand1, operand2, count

           Logic:        operand1|operand2 . SHL(operand1|operand2,count)

     SHLD is a double precision shift left instruction.

     This instruction takes three operands. Taken together, the first two
     operands (operand1 and operand2) form a 32-bit or 64-bit entity,
     OP. The third operand, 8 bits long, is the count. SHLD shifts OP left
     by count places.

  --------------------------------------------------------------------------
   Operands                   Clocks   Transfers  Bytes  Example
   SHLD reg,reg,immediate8    3 (386)      -        5    SHLD BX,CX,5
   SHLD memory,reg,immediate8 7 (386)      -        6    SHLD MEM_LOC,DX,6
   SHLD reg,reg,CL            3 (386)      -        4    SHLD BX,DX,CL
   SHLD memory,CL             7 (386)      -        5    SHLD MEM_LOC,DX,CL
  --------------------------------------------------------------------------

        Note:          count may be stored in CL.

See Also: SHRD

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