Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
delphi-sva/Analyzer.dpr
2004-12-08 09:47:52 +00:00

15 lines
247 B
ObjectPascal

program Analyzer;
uses
Forms,
AnalyzerU in 'AnalyzerU.pas' {AForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'SONY VAIO 0x57 Analyzer';
Application.CreateForm(TAForm, AForm);
Application.Run;
end.