source:
trunk/Demos/Simple/System.pas
Last change on this file was 68, checked in by , 12 years ago | |
---|---|
File size: 464 bytes |
Line | |
---|---|
1 | unit System; |
2 | |
3 | interface |
4 | |
5 | type |
6 | Integer = type; internal; |
7 | String = type; internal; |
8 | |
9 | function ReadLn: string; internal; |
10 | procedure WriteLn(Text: string); internal; |
11 | procedure SetPort(Index: Integer; Value: Byte); |
12 | function GetPort(Index: Integer): Byte; |
13 | property Port[Index: Integer]: Byte read GetPort write SetPort; |
14 | |
15 | implementation |
16 | |
17 | function ReadLn: string; |
18 | begin |
19 | Result := ''; |
20 | end; |
21 | |
22 | procedure WriteLn(Text: string); |
23 | begin |
24 | end; |
25 | |
26 | end. |
Note:
See TracBrowser
for help on using the repository browser.