A2301: Label is missing

[ERROR]

Description

A label name is missing on the front of an assembly directive requiring a label. These directives are:

Example
    SECTION 4

    ...

    EQU $67

    ...

    SET $77
  
Tips

Insert a label in front of the directive.

Example
  codeSec: SECTION 4

    ...

  myConst: EQU $67

    ...

  mySetV:  SET $77