A1052: Right parenthesis expected

[ERROR]

Description

A right parenthesis is missing in an assembly expression.

Example
  variable: DS.W 1

  label1: EQU (2*4+6

  label3: EQU LOW(variable

  label4: EQU HIGH(variable
  
Tips

Insert the right parenthesis at the correct position.

Example
  variable: DS.W 1

  label1: EQU (2*4+6)

  label3: EQU LOW(variable)

  label4: EQU HIGH(variable)