source: branches/test3/Project1.lpr

Last change on this file was 16, checked in by chronos, 2 weeks ago
  • Added: Test virtual machine implemented with generics to specify custom data and address bit width.
File size: 511 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, Cpu
12 { you can add units after this };
13
14{$R *.res}
15
16begin
17 RequireDerivedFormResource:=True;
18 Application.Title:='project1';
19 Application.Scaled:=True;
20 {$PUSH}{$WARN 5044 OFF}
21 Application.MainFormOnTaskbar:=True;
22 {$POP}
23 Application.Initialize;
24 Application.CreateForm(TFormMain, FormMain.FormMain);
25 Application.Run;
26end.
27
Note: See TracBrowser for help on using the repository browser.