home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1987-10-18 | 343 b | 21 lines |
- DEFINITION MODULE DTA;
-
- (* (C) Copyright 1987 Fitted Software Tools. All rights reserved. *)
-
-
- (* Get / Set DOS Disk Transfer Address *)
-
- FROM SYSTEM IMPORT ADDRESS;
-
-
- PROCEDURE GetDTA( VAR adrs :ADDRESS );
- (*
- returns the current DTA at adrs.
- *)
-
- PROCEDURE SetDTA( adrs :ADDRESS );
- (*
- sets DTA to adrs
- *)
-
- END DTA.