BSOne.SFC/Tocsg.Module/PrefetchAnal/PrefetchAnal.dpr

17 lines
340 B
Plaintext

program PrefetchAnal;
uses
Vcl.Forms,
DPrefetchAnalMain in 'DPrefetchAnalMain.pas' {DlgPrefetchAnalMain};
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TDlgPrefetchAnalMain, DlgPrefetchAnalMain);
Application.Run;
end.