__MODE_LARGE__

Top  Previous  Next

__MODE_LARGE__ is defined when the project is compiled for the LARGE architecture. See Project: Settings.

 

 

Example:

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