program project1; uses {$IFDEF UNIX} cthreads, {$ENDIF} {$IFDEF HASAMIGA} athreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, FormMain, Machine, Cpu, Memory, SerialPort, Cpu2, Device, CpuLevels, AddressableArea, CpuBitWidth { you can add units after this }; {$R *.res} begin RequireDerivedFormResource:=True; Application.Scaled:=True; Application.Initialize; Application.CreateForm(TFormMain, FormMain.FormMain); Application.Run; end.