A1103: Illegal redefinition of label

[ERROR]

Description

The label specified in front of a comment or an assembly instruction or directive, is detected twice in a source file.

Example
  DataSec1: SECTION

  label1: DS.W 2

  label2: DS.L 2

  ...

  label2: DS.W 3
  
Tips

Modify the label names, in order to have unique label identification in each assembly file.

Example
  DataSec1: SECTION

  label1: DS.W 2

  label2: DS.L 2

  ...

  label3: DS.W 3