source: trunk/Compiler/Modules/ASM8051/ModuleASM8051.pas

Last change on this file was 76, checked in by chronos, 6 months ago
  • Fixed: Added missing file.
File size: 626 bytes
Line 
1unit ModuleASM8051;
2
3interface
4
5uses
6 Classes, SysUtils, ModularSystem, SourceConvertor;
7
8type
9 { TModuleASM8051 }
10
11 TModuleASM8051 = class(TModule)
12 constructor Create(AOwner: TComponent); override;
13 procedure DoInstall; override;
14 procedure DoUninstall; override;
15 end;
16
17
18implementation
19
20uses
21 CompilerAPI;
22
23resourcestring
24 SASM8051 = 'ASM8051';
25
26{ TModuleASM8051 }
27
28constructor TModuleASM8051.Create;
29begin
30 inherited;
31 Identification := 'ASM8051';
32 Title := SASM8051;
33end;
34
35procedure TModuleASM8051.DoInstall;
36begin
37 inherited;
38end;
39
40procedure TModuleASM8051.DoUninstall;
41begin
42 inherited;
43end;
44
45end.
46
Note: See TracBrowser for help on using the repository browser.