Specifications
826 ML Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 826 of 142 Printed: 10/09/00 02:49 PM
A2205 ESC instruction is obsolete : ignored
The ESC (Escape) instruction is no longer supported. All numeric coprocessor
instructions are now supported directly by the assembler.
A2206 missing operator in expression
An expression cannot be evaluated because it is missing an operator. This error message
may also be a side-effect of a preceding program error.
The following line will generate this error:
value1 = ( 1 + 2 ) 3
A2207 missing right parenthesis in expression
An expression cannot be evaluated because it is missing a right (closing) parenthesis. This
error message may also be a side-effect of a preceding program error.
The following line will generate this error:
value1 = ( ( 1 + 2 ) * 3
A2208 missing left parenthesis in expression
An expression cannot be evaluated because it is missing a left (opening) parenthesis. This
error message may also be a side-effect of a preceding program error.
The following line will generate this error:
value1 = ( ( 1 + 2 ) * 3 ) )
A2209 reference to forward macro redefinition
A macro cannot be accessed because it has not been yet defined.
Move the macro definition ahead of all references to the macro.
A2901 cannot run ML.EXE
The MASM driver could not spawn ML.EXE.
One of the following may have occurred:
u ML.EXE was not in the path.
u The READ attribute was not set on ML.EXE.
u There was not enough memory.
ML Warnings
A4000 cannot modify READONLY segment
An attempt was made to modify an operand in a segment marked with the READONLY
attribute.