source: branches/configured machine/project1.lpr

Last change on this file was 239, checked in by chronos, 10 months ago
File size: 490 bytes
Line 
1program project1;
2
3uses
4 {$IFDEF UNIX}
5 cthreads,
6 {$ENDIF}
7 {$IFDEF HASAMIGA}
8 athreads,
9 {$ENDIF}
10 Interfaces, // this includes the LCL widgetset
11 Forms, FormMain, Machine, Cpu, Memory, SerialPort, Cpu2, Device, CpuLevels,
12 AddressableArea, CpuBitWidth
13 { you can add units after this };
14
15{$R *.res}
16
17begin
18 RequireDerivedFormResource:=True;
19 Application.Scaled:=True;
20 Application.Initialize;
21 Application.CreateForm(TFormMain, FormMain.FormMain);
22 Application.Run;
23end.
24
Note: See TracBrowser for help on using the repository browser.