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

Product codes
SW006021-1
Page of 518
MPLAB
®
 XC8 C Compiler User’s Guide
DS52053B-page 440
 2012 Microchip Technology Inc.
(787) can’t handle "v_rtype" of * in copyexpr 
(Assembler)
This is an internal compiler error. Contact Microchip Technical Support with details.
(788) invalid character "*" in number 
(Assembler)
A number contained a character that was not part of the range 0-9 or 0-F.
(790) end of file inside conditional 
(Assembler)
END-of-FILE was encountered while scanning for an “endif” to match a previous “if”.
(793) unterminated macro argument 
(Assembler)
An argument to a macro is not terminated. Note that angle brackets (“< >”) are used to 
quote macro arguments.
(794) invalid number syntax 
(Assembler)
The syntax of a number is invalid. This, for example, can be use of 8 or 9 in an octal 
number, or other malformed numbers.
(796) use of LOCAL outside macros is illegal 
(Assembler)
The LOCAL directive is only legal inside macros. It defines local labels that will be 
unique for each invocation of the macro.
(797) syntax error in LOCAL argument 
(Assembler)
A symbol defined using the LOCAL assembler directive in an assembler macro is syn-
tactically incorrect. Ensure that all symbols and all other assembler identifiers conform 
with the assembly language of the target device.
(798) macro argument may not appear after LOCAL 
(Assembler)
The list of labels after the directive LOCAL may not include any of the formal parameters 
to the macro, for example:
mmm MACRO a1
MOVE
r0, #a1
LOCAL
a1
; oops --
; the macro parameter cannot be used with local
ENDM
(799) REPT argument must be >= 0 
(Assembler)
The argument to a REPT directive must be greater than zero, for example:
REPT -2
; -2 copies of this code? */
  MOVE
r0, [r1]++
ENDM
(800) undefined symbol "*" 
(Assembler)
The named symbol is not defined in this module, and has not been specified GLOBAL.
(801) range check too complex 
(Assembler)
This is an internal compiler error. Contact Microchip Technical Support with details.
(802) invalid address after END directive 
(Assembler)
The start address of the program which is specified after the assembler END directive 
must be a label in the current file.
(803) undefined temporary label 
(Assembler)
A temporary label has been referenced that is not defined. Note that a temporary label 
must have a number >= 0.