-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCompilerProj.dpr
More file actions
51 lines (48 loc) · 1.51 KB
/
Copy pathCompilerProj.dpr
File metadata and controls
51 lines (48 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
program CompilerProj;
uses
Forms,
Main in 'Main.pas' {Form2},
D16Parser in 'D16Parser.pas',
Lexer in 'Lexer\Lexer.pas',
Token in 'Lexer\Token.pas',
DataType in 'DataType.pas',
VarDeclaration in 'VarDeclaration.pas',
CodeElement in 'CodeElement.pas',
ProcDeclaration in 'ProcDeclaration.pas',
PascalUnit in 'PascalUnit.pas',
OpElement in 'OpElement.pas',
Relation in 'Relation.pas',
Expression in 'Expression.pas',
Term in 'Term.pas',
Factor in 'Factor.pas',
Assignment in 'Assignment.pas',
Optimizer in 'Optimizer.pas',
Condition in 'Condition.pas',
Loops in 'Loops.pas',
ProcCall in 'ProcCall.pas',
ASMBlock in 'ASMBlock.pas',
D16Assembler in 'D16Assembler.pas',
Operation in 'Operation.pas',
Operations in 'Operations.pas',
HeaderMessage in 'HeaderMessage.pas',
CaseState in 'CaseState.pas',
Opcode in 'Opcode.pas',
CompilerUtil in 'CompilerUtil.pas',
CompilerDefines in 'CompilerDefines.pas',
WriterIntf in 'WriterIntf.pas',
UncountedInterfacedObject in 'UncountedInterfacedObject.pas',
LineMapping in 'LineMapping.pas',
Compiler in 'Compiler.pas',
UnitCache in 'UnitCache.pas',
D16Writer in 'D16Writer.pas',
VarMapping in 'VarMapping.pas',
RoutineMapping in 'RoutineMapping.pas',
DummyCollection in 'DummyCollection.pas',
CompilerVersion in 'CompilerVersion.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm2, Form2);
Application.Run;
end.