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

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 319 bytes
Line 
1unit TargetASM8051;
2
3interface
4
5uses
6 Classes, SysUtils, Target;
7
8type
9
10 { TTargetASM8051 }
11
12 TTargetASM8051 = class(TTarget)
13 constructor Create; override;
14 end;
15
16
17implementation
18
19{ TTargetASM8051 }
20
21constructor TTargetASM8051.Create;
22begin
23 inherited;
24 SysName := 'ASM8051';
25 Name := 'ASM8051';
26end;
27
28end.
29
Note: See TracBrowser for help on using the repository browser.