Keil Logo

A51: Error 21 (Expression with Forward Reference)


Information in this article applies to:

  • C51 Version 5.50a and later

SYMPTOMS

I receive the following error when I assemble my 8051 assembler source file.

*** ERROR #21 IN 3 (TEST.A51, LINE 3): EXPRESSION WITH FORWARD REFERENCE NOT PERMITTED

What causes this problem?

CAUSE

This problem is typically caused by a SET or EQU that is used with a label that is defined later in your program. For example, the following example code generates this error message.

cseg    at      0

jjj     equ     bob+1


start:  nop
        nop
        nop
        nop
bob:    nop
        nop
        nop
end

RESOLUTION

The A51 assembler must resolve SET and EQU definitions when they are declared. References to objects that are not defined at the time of the SET or EQU are not allowed. To resolve this problem, move the SET or EQU below the forward reference, or remove it from the SET or EQU.

MORE INFORMATION

Refer to the following for more information.

  • Refer to Error A21 in the Ax51 User's Guide.

Last Reviewed: Thursday, February 25, 2021


Did this article provide the answer you needed?
 
Yes
No
Not Sure
 
  Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.

Change Settings

Privacy Policy Update

Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.