Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Redefinable Numeric Equate
 Example                                   Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Syntax:   name = expression
 
  See also: EQU, EQ, ==
 
  Description:
 
     Creates or redefines a constant symbol by assigning the numeric
     value of <expression> to <name>. This equate can be used in
     subsequent statements as a symbolic constant and can be redefined
     at any time.
 
     The <name> field must be either a unique name or one previously
     defined with =. The <expression> fieldis any valid constant
     expression. Resolved at definition by the assembler.
                                    -♦-