source: branches/textos/Apps/Bootloader/UBootLoader.pas

Last change on this file was 53, checked in by chronos, 12 months ago
  • Added: Experimental textos computer.
File size: 428 bytes
Line 
1unit UBootLoader;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, UApp;
9
10type
11
12 { TAppBootLoader }
13
14 TAppBootLoader = class(TApp)
15 procedure OnStart; override;
16 constructor Create; override;
17 end;
18
19
20implementation
21
22uses
23 UShell, UCalculator;
24
25{ TAppBootLoader }
26
27procedure TAppBootLoader.OnStart;
28begin
29 Terminate;
30end;
31
32constructor TAppBootLoader.Create;
33begin
34 inherited;
35 Name := 'Bootloader';
36end;
37
38end.
39
Note: See TracBrowser for help on using the repository browser.