Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Assembly Language - <b>this create operand at current location masm operator</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
THIS             Create Operand at Current Location             MASM Operator

  THIS type

    Creates an operand whose address (segment and offset) is equal to the
    current location counter and whose type is type.

    Type can be any of the following:

             BYTE
             WORD
             DWORD
             QWORD
             TBYTE
             NEAR
             FAR

    This operator is used to create labels and variables using the EQU or
    equal-sign ('=') directives in the same manner as the LABEL directive.

  -------------------------------- Example ---------------------------------

           byteLabel      equ       THIS BYTE

    is the same as:

           byteLabel      LABEL     BYTE

See Also: LABEL BYTE WORD DWORD QWORD TBYTE NEAR FAR

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