Compiler page

Parent Previous Next


Include and unit paths:


When the compiler searches for a unit or file to include, it searches first in the folder of the main file. Next it searches in these folders from left to right. Folders are separated by semicolons.

The button at right opens a dialog that permits folders management.

All paths are displayed relative to the project's path.


Output path:


This is where the compiler will place all the generated .asm and .pcu files. 

The button at right opens a folder choose dialog.

The output path is displayed relative to the project's path.


Assembler output:


This group of controls manages how much information is written in the generated assembler file (.asm). 


Miscellaneous:


This group of controls manages some of the behaviors of the compiler:



Conditional defines:


This list may be used to initialize default conditional defines at the beginning of the main file compilation.


A conditional define in this list:


Individual conditionals may be checked ($DEFINE) or not ($UNDEFINE) to be changed without to have to rename or suppress them. 

String values have not to be surrounded by quotes.

Conditional value may be retrieved through the DEFINED_VALUE() pseudo built-in function.

The optional comment cannot contain the vertical bar character.


You may enter something like FOO = 120 // Comment.