Motorola HC12 사용자 설명서

다운로드
페이지 328
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