source: trunk/PascalCompilerAVR.dpr

Last change on this file was 10, checked in by george, 16 years ago

Přesunuto: analýza gramatiky do branches.
Přidáno: Hlavní větev překladač pascalu pro AVR.

File size: 214 bytes
Line 
1program PascalCompilerAVR;
2
3uses
4 Forms,
5 UMainForm in 'UMainForm.pas' {MainForm};
6
7{$R *.res}
8
9begin
10 Application.Initialize;
11 Application.CreateForm(TMainForm, MainForm);
12 Application.Run;
13end.
Note: See TracBrowser for help on using the repository browser.