source: branches/8051/UParser.pas

Last change on this file was 20, checked in by chronos, 12 years ago
  • Přidáno: Počáteční návrh editoru a kompilátoru pro i8051.
File size: 247 bytes
Line 
1unit UParser;
2
3{$mode delphi}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils;
9
10type
11
12 { TParser }
13
14 TParser = class
15 procedure Analyze;
16 end;
17
18implementation
19
20{ TParser }
21
22procedure TParser.Analyze;
23begin
24
25end;
26
27end.
28
Note: See TracBrowser for help on using the repository browser.