A1303: No type defined

[ERROR]

Description

A directive only allowed inside of s structured type definition was found without a leading STRUCT or UNION.

Note

Not all assembler backends do support structured types. Assembler not supporting them will not issue this message.

Example
  field1:    DS.W 1

  field2:    DS.W 1

           ENDSTRUCT
  
Tips

Check the STRUCT directive at the start.

Example
  myType:  STRUCT

  field1:    DS.W 1

  field2:    DS.W 1

           ENDSTRUCT