| Line | |
|---|
| 1 | program project1;
|
|---|
| 2 |
|
|---|
| 3 | uses
|
|---|
| 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 |
|
|---|
| 17 | begin
|
|---|
| 18 | RequireDerivedFormResource:=True;
|
|---|
| 19 | Application.Scaled:=True;
|
|---|
| 20 | Application.Initialize;
|
|---|
| 21 | Application.CreateForm(TFormMain, FormMain.FormMain);
|
|---|
| 22 | Application.Run;
|
|---|
| 23 | end.
|
|---|
| 24 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.