2 a1001: conditional else not allowed here, A1001: conditional else not allowed here, Assembler messages – Motorola HC12 User Manual

Page 248

Advertising
background image

User’s Manual

MCUez HC12 Assembler

248

Assembler Messages

MOTOROLA

Assembler Messages

12.3.2 A1001: Conditional Else not Allowed Here

Type:

Error

Description:

A second ELSE directive is detected in a conditional block.

Example:

IFEQ (defineConst)

...

ELSE

...

ELSE

...

ENDIF

Tip:

Remove the superfluous ELSE directive.

Example:

IFEQ (defineConst)

...

ELSE

...

ENDIF

Advertising