Microchip Technology XC8 Standard Compiler (Workstation) SW006021-1 SW006021-1 User Manual

Product codes
SW006021-1
Page of 518
Error and Warning Messages
 2012 Microchip Technology Inc.
DS52053B-page 439
(768) constant relational expression 
(Code Generator)
There is a relational expression that will always be true or false. This, for example, may 
be the result of comparing an unsigned number with a negative value; or comparing 
a variable with a value greater than the largest number it can represent, for example:
unsigned int a;
if(a == -10)    /* if a is unsigned, how can it be -10? */
  b = 9;
(769) no space for macro definition 
(Assembler)
The assembler has run out of memory.
(772) include files nested too deep 
(Assembler)
Macro expansions and include file handling have filled up the assembler’s internal 
stack. The maximum number of open macros and include files is 30.
(773) macro expansions nested too deep 
(Assembler)
Macro expansions in the assembler are nested too deep. The limit is 30 macros and 
include files nested at one time.
(774) too many macro parameters 
(Assembler)
There are too many macro parameters on this macro definition.
(776) can’t allocate space for object "*" (offs: *) 
(Assembler)
The assembler has run out of memory.
(777) can’t allocate space for opnd structure within object "*", (offs: *) 
(Assembler)
The assembler has run out of memory.
(780) too many psects defined 
(Assembler)
There are too many psects defined! Boy, what a program!
(781) can’t enter abs psect 
(Assembler)
This is an internal compiler error. Contact Microchip Technical Support with details.
(782) REMSYM error 
(Assembler)
This is an internal compiler error. Contact Microchip Technical Support with details.
(783) "with" psects are cyclic 
(Assembler)
If Psect A is to be placed “with” Psect B, and Psect B is to be placed “with” Psect A, 
there is no hierarchy. The with flag is an attribute of a psect and indicates that this 
psect must be placed in the same memory page as the specified psect.
Remove a with flag from one of the psect declarations. Such an assembler 
declaration may look like:
psect my_text,local,class=CODE,with=basecode
which will define a psect called my_text and place this in the same page as the psect 
basecode
.
(784) overfreed 
(Assembler)
This is an internal compiler error. Contact Microchip Technical Support with details.
(785) too many temporary labels 
(Assembler)
There are too many temporary labels in this assembler file. The assembler allows a 
maximum of 2000 temporary labels.