source: trunk/Demos/Simple/System.pas

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