source: branches/textos/textos.lpr

Last change on this file was 53, checked in by chronos, 6 months ago
  • Added: Experimental textos computer.
File size: 400 bytes
Line 
1program textos;
2
3{$mode delphi}{$H+}
4
5uses
6 {$IFDEF UNIX}cthreads,{$ENDIF}
7 Interfaces, // this includes the LCL widgetset
8 Forms, UFormMain, UCalculator, UApi, UKernel, UApp, UBootLoader, UShell,
9 UTextBuffer;
10
11{$R *.res}
12
13begin
14 RequireDerivedFormResource := True;
15 Application.Scaled := True;
16 Application.Initialize;
17 Application.CreateForm(TFormMain, FormMain);
18 Application.Run;
19end.
20
Note: See TracBrowser for help on using the repository browser.