home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / fortran / mslang / f32int / readme.txt < prev   
Text File  |  1993-06-25  |  3KB  |  57 lines

  1.  --------------------------------------------------------------------
  2. | INFORMATION PROVIDED IN THIS DOCUMENT AND ANY SOFTWARE THAT MAY    |
  3. | ACCOMPANY THIS DOCUMENT (collectively referred to as an            |
  4. | Application Note) IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY      |
  5. | KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO    |
  6. | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A     |
  7. | PARTICULAR PURPOSE. The user assumes the entire risk as to the     |
  8. | accuracy and the use of this Application Note. This Application    |
  9. | Note may be copied and distributed subject to the following        |
  10. | conditions: 1) All text must be copied without modification and    |
  11. | all pages must be included; 2) If software is included, all files  |
  12. | on the disk(s) must be copied without modification [the MS-DOS(R)  |
  13. | utility DISKCOPY is appropriate for this purpose]; 3) All          |
  14. | components of this Application Note must be distributed together;  |
  15. | and 4) This Application Note may not be distributed for profit.    |
  16. |                                                                    |
  17. | Copyright 1990-1993 Microsoft Corporation. All Rights Reserved.    |
  18. | Microsoft, MS-DOS, and the Microsoft logo are registered           |
  19. | trademarks and Windows is a trademark of Microsoft Corporation.    |
  20.  --------------------------------------------------------------------
  21.  
  22.  
  23. THIS IS A BETA VERSION OF THIS APPLICATION NOTE, please give us your
  24. suggestions and opinions.
  25.  
  26.  
  27. Date: 6/25/93
  28.  
  29. The purpose of this function is to provide the ability to invoke BIOS 
  30. interrupts from the FORTRAN Powerstation.
  31.  
  32.  
  33. Files included in this sample:
  34.  
  35.       INT86QQ.ZIP:  A PKZIP v2.04G compressed file that includes all of the 
  36.                     below files.  This file may or may not be sent with the 
  37.                     files listed below.
  38.       
  39.       README.TXT:   This file
  40.       
  41.       FUNKEY.FOR:   Fortran code that calls INT86QQ to obtain keyboard input.
  42.                           
  43.       INT86QQ.FI:   Include file with the INTERFACE statement for FORTRAN.
  44.       INT86QQ.FD:   Include file with data declarations for INT86QQ.
  45.       
  46.       INT86QQ.ASM:  MASM source for the INT86QQ function.
  47.       INT86QQ.OBJ:  Binary immage of INT86QQ function compiled with MASM 6.10
  48.  
  49.  
  50. To create the example:
  51.  
  52. Just include the OBJ file with your FORTRAN source files in your build.  
  53.  
  54. For Example:
  55.  
  56.       FL32 funkey.for int86qq.obj<ENTER>      ! Command line build.
  57.