A1053: Left parenthesis expected

[ERROR]

Description

A left parenthesis is missing in an assembly expression.

Example
  variable: ds.w 1

  label1: EQU LOW variable)

  label2: EQU HIGH variable)
  
Tips

Insert the left parenthesis at the correct position.

Example
  label1: EQU LOW(variable)

  label2: EQU HIGH(variable)