Hi Mike,
Thank you for your reply.
Syntax colouring | code | macro defines and macro references works in C/C++ editor, but not assembly editor.
Syntax colouring | preprocessor | directives has effect in both C/C++ and assembly editor.
Syntax colouring | code:
macro defines, macro symbol
macro references, place where the macro was used/referenced
Syntax colouring | preprocessor:
directives, preprocessor keywords
#define THIS 3
int i = THIS;
THIS is macro define; THIS is macro reference; #define is preprocessor directive.
Yang