Chapter 7 Programming Convenience
7-19
7.3.4 Grammar Error
This function is used to check for grammar-related errors generated when a application instruction is used.
1) E1001: Label declared as duplicated. This error will occur if duplicated LABEL used.
Action: Delete the duplicated label, or change the name of the label.
2) E1002: Label ‘Label Name‘ nonexistent. This error will occur if JMP is used to refer to the
nonexistent label.
Action: Add the label where the error occurs, or correct the JMP instruction which uses the label.
3) E1003: Label ‘Label Name‘ not used. This error will occur if the JMP instruction is nonexistent to
use the label existent.
Action: Delete the label, or add the application JMP instruction.