program virtucpu4; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, clocale, {$ENDIF} Interfaces, // this includes the LCL widgetset SysUtils, Forms, UFormMain, UCpu, UMachine, UMemory, UFormDisassembler, UFormMemory, UFormCpuState, UFormScreen, UFormConsole, UDisassembler, UAssembler, UInstructionReader, UOpcode, UFormAssembler, UFormCompilerPascal, UCompilerPascal { you can add units after this }; {$R *.res} {$if declared(UseHeapTrace)} const HeapTraceLog = 'heaptrclog.trc'; {$ENDIF} begin {$if declared(UseHeapTrace)} // Heap trace DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); {$ENDIF} RequireDerivedFormResource:=True; Application.Scaled:=True; Application.Initialize; Application.CreateForm(TFormMain, FormMain); Application.Run; end.