A1051: Zero Division in expression

[DISABLE, INFORMATION, WARNING, ERROR]

Description

A zero division is detected in an expression.

Example
  label:  EQU 0

  label2: EQU $5000

          DC (label2/label)
  
Tips

Modify the expression or specify it in a conditional assembly block.

Example
  label:  EQU 0


  label2: EQU $5000

        IFNE (label)

          DC  (label2/label)

        ELSE

          DC  label2

        ENDIF