__MODE_NX32__

Top  Previous  Next

__MODE_NX32__ is defined when the project is compiled for the NX32 architecture. See Project: Settings.

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
#IFDEF __MODE_NX32__ THEN
  DebugMsg(message := "Compilation architecture is NX32");
#END_IF
 
END_PROGRAM;