program CodeGen; {$mode objfpc}{$H+} {.$MODE Delphi} uses Interfaces, Forms, CodeGenU in 'CODEGENU.pas' {CodeGenFrm}, tponguard; {$R *.res} begin Application.Scaled:=True; Application.Title:=''; Application.Initialize; Application.CreateForm(TCodeGenFrm, CodeGenFrm); Application.Run; end.