source: trunk/Compiler/Modules/NASM/TargetNASM.pas

Last change on this file was 77, checked in by chronos, 6 months ago
  • Modified: Compiler targets moved into modules.
File size: 298 bytes
Line 
1unit TargetNASM;
2
3interface
4
5uses
6 Classes, SysUtils, Target;
7
8type
9
10 { TTargetNASM }
11
12 TTargetNASM = class(TTarget)
13 constructor Create; override;
14 end;
15
16
17implementation
18
19{ TTargetNASM }
20
21constructor TTargetNASM.Create;
22begin
23 inherited;
24 Name := 'NASM';
25 SysName := 'NASM';
26end;
27
28end.
29
Note: See TracBrowser for help on using the repository browser.