
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Assembly Language - <b>[] index operator masm operator</b>
[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
[] Index Operator MASM Operator
expression1[expression2]
Adds the value of expression1 to the value of expression2. This
operator is the same as the plus-operator ('+'), except expression1 is
optional for this operator.
Notes: If expression1 is specified, it can be an integer value,
relocatable operand, or absolute symbol. Expression2
can be an integer value, relocatable operand, or
absolute symbol, unless expression1 is specified, in
which case expression2 can not be a relocatable operand.
This operator is generally used to access individual
items in an array. For example, the following will
access the third byte of a character string.
MOV AL, STRING [2]
See Also: . +
Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson