Microchip Technology XC8 Standard Compiler (Workstation) SW006021-1 SW006021-1 ユーザーズマニュアル

製品コード
SW006021-1
ページ / 518
MPLAB
®
 XC8 C Compiler User’s Guide
DS52053B-page 400
 2012 Microchip Technology Inc.
(294) can’t allocate * bytes of memory 
(Code Generator, Hexmate)
This is an internal compiler error. Contact Microchip Technical Support with details.
(295) expression too complex 
(Parser)
This expression has caused overflow of the compiler’s internal stack and should be 
re-arranged or split into two expressions.
(296) out of memory 
(Objtohex)
This could be an internal compiler error. Contact Microchip Technical Support with 
details.
(297) bad argument (*) to tysize() 
(Parser)
This is an internal compiler error. Contact Microchip Technical Support with details.
(298) end of file in #asm 
(Preprocessor)
An end of file has been encountered inside a #asm block. This probably means the 
#endasm
 is missing or misspelled, for example:
#asm
  MOV  r0, #55
  MOV  [r1], r0
}                /* oops -- where is the #endasm */
(300) unexpected end of file 
(Parser)
An end-of-file in a C module was encountered unexpectedly, for example:
void main(void)
{
  init();
  run();    /* is that it? What about the close brace */
(301) end of file on string file 
(Parser)
This is an internal compiler error. Contact Microchip Technical Support with details.
(302) can’t reopen "*": * 
(Parser)
This is an internal compiler error. Contact Microchip Technical Support with details.
(303) can’t allocate * bytes of memory (line *) 
(Parser)
The parser was unable to allocate memory for the longest string encountered, as it 
attempts to sort and merge strings. Try reducing the number or length of strings in this 
module.
(306) can’t allocate * bytes of memory for * 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(307) too many qualifier names 
(Parser)
This is an internal compiler error. Contact Microchip Technical Support with details.
(308) too many case labels in switch 
(Code Generator)
There are too many case labels in this switch statement. The maximum allowable 
number of case labels in any one switch statement is 511.
(309) too many symbols 
(Assembler)
There are too many symbols for the assembler’s symbol table. Reduce the number of 
symbols in your program.