source: branches/UltimatOS/UltimatOS.lpr

Last change on this file was 35, checked in by chronos, 23 months ago
  • Added: Cpu state window.
File size: 438 bytes
Line 
1program UltimatOS;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads,
8 {$ENDIF}
9 {$IFDEF HASAMIGA}
10 athreads,
11 {$ENDIF}
12 Interfaces, // this includes the LCL widgetset
13 Forms, UFormMain, UMachine, UCpu, UMemory, UAssembler, UFormMemory, UFormCpu;
14
15{$R *.res}
16
17begin
18 RequireDerivedFormResource:=True;
19 Application.Scaled:=True;
20 Application.Initialize;
21 Application.CreateForm(TFormMain, FormMain);
22 Application.Run;
23end.
24
Note: See TracBrowser for help on using the repository browser.