11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Error and Warning Messages(793) unterminated macro arg (Assembler)An argument to a macro is not terminated. Note that angle brackets ("< >") are used to quote macroarguments.(794) invalid number syntax (Assembler, Optimiser)The syntax of a number is invalid. This can be, e.g. use of 8 or 9 in an octal number, or othermalformed numbers.(796) local illegal outside macros (Assembler)The LOCAL directive is only legal inside macros. It defines local labels that will be unique for eachinvocation of the macro.(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 themacro, e.g.:mmm macro a1move r0, #a1LOCAL a1ENDM; woops -- the macro parameter cannot be used with local(799) rept argument must be >= 0 (Assembler)The argument to a REPT directive must be greater than zero, e.g.: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 HI-TECH Software technical support with details.312

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!