home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1989-01-09 | 1.1 KB | 33 lines |
- DEFINITION MODULE XBIOS;
-
- (*
- * Copyright (c) 1987,1988,1989 by
- * ana-systems, Foster City, California.
- * All Rights Reserved.
- *
- * This software is furnished under a license and may be used and copied
- * only in accordance with the terms of such license and with the
- * inclusion of the above copyright notice. This software or any other
- * copies thereof may not be provided or otherwise made available to any
- * other person. No title to and ownership of the software is herby
- * transferred.
- *
- * The information in this software is subject to change without notice
- * and should not be construed as a commitment by ana-systems. No
- * warranty is implied or expressed.
- *)
-
- FROM SYSTEM IMPORT ADDRESS;
-
- EXPORT QUALIFIED FlopFmt,FlopWr,ProtoBt;
-
- PROCEDURE FlopWr(buf:ADDRESS; filler,device,sector,track,
- side,count:INTEGER):INTEGER;
-
- PROCEDURE FlopFmt(buf:ADDRESS; filler,device,spt,track,side,
- interleave,magic,virgin:INTEGER):INTEGER;
-
- PROCEDURE ProtoBt(buf:ADDRESS; serialnum,disktype,execflag:INTEGER);
-
- END XBIOS.
-