C18101: Object is not a field

ERROR]

Description

The HLI assembler expects a structure's field or a class member on the right side of the "." assembly operator.

Example
  struct _str { int flag;}

  
  _str port;

  
  asm LDA  port.field

  
   /* Error, field is not a member of the _str struct. */

  
  asm LDA port.flag 

  
  /*correct use*/