| |||||
Technical Support Support Resources
Product Information | A51: ERROR 5 (ILLEGAL USE OF A RESERVED WORD)Information in this article applies to:
SYMPTOMSI have a symbol declared as extern in my assembler with the following line: EXTRN XDATA:BYTE (cmd0) But when I assemble my file, I get: ERROR 5 ILLEGAL USE OF A RESERVED WORD. What am I doing wrong? CAUSEYou may only specify the type of the external symbol if you are using the A251 assembler. The A51 assembler is complaining that it does not like BYTE to be used with an EXTRN directive. RESOLUTIONChange your EXTRN directive to: EXTRN XDATA (cmd0) MORE INFORMATION
SEE ALSOLast Reviewed: Tuesday, July 19, 2005 | ||||
| |||||