1 / 4

Ptr Operator

Ptr Operator. Ptr Operator - For some instructions, the size of the operand is not clear (INC [20H]). INC Byte Ptr [0020]. INC Word Ptr [0020]. PTR Operator. Ptr Operator allows the override of the default size of an operand.

fola
Télécharger la présentation

Ptr Operator

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ptr Operator Ptr Operator - For some instructions, the size of the operand is not clear (INC [20H]). INC Byte Ptr [0020] INC Word Ptr [0020]

  2. PTR Operator • Ptr Operator allows the override of the default size of an operand. • Because operand sizes must match, PTR allows the movement of different size operands (of course, only the same size is actually moved).

  3. Ptr Operator Example .data MyDouble DWORD 12345678h .code Mov ax, myDouble ;error

  4. Ptr Operator Example .data MyDouble DWORD 12345678h .code Mov ax, Word PTR myDouble ;ax = ? ;ax = 5678h Mov ax, Word PTR [myDouble + 2] ;ax = ? ;ax = 1234h Mov ax, BYTE PTR myDouble ;ax = ? ;assembly error

More Related