A2317: Illegal redefinition of section name

[ERROR]

Description

The name associated with a section is previously used as a label in a code or data section or is specified in a XDEF directive. The macro assembler does not allow to export a section name, or to use the same name for a section and a label.

Example
  dataSec:   SECTION

  sec_Label: DS.W 3

             ; ...

  sec_Label: SECTION

             ; ...
  
Tips

Change to name of the section to a unique identifier.

Example
  dataSec:   SECTION

  dat_Label: DS.W 3

             ; ...

  sec_Label: SECTION

             ; ...