| |||||
Technical Support Support Resources
Product Information | AX51: ERRORS ASSEMBLING STARTUP.A51Information in this article applies to:
SYMPTOMWhen I use the AX51 assembler for my 8051 project, I receive the following error when I assemble the STARTUP.A51 file: 000006 141 MOV SP,#?STACK-1 *** ____________________________________________________^ *** ERROR #A45 IN 141 (STARTUP.A51, LINE 141): UNDEFINED SYMBOL CAUSEThis error is caused by the SP sfr which is undefined. This SFR was defined automatically by the A51 assembler. RESOLUTIONDefine the SP SFR and the assembler will no longer generate this error. For example:
SP EQU 81h
MOV SP,#?STACK-1
Last Reviewed: Friday, July 20, 2001 | ||||
| |||||