home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / communic / ibmcom / ints.inc < prev   
Encoding:
Text File  |  1988-12-31  |  214 b   |  16 lines

  1. {Include file INTS.INC.  INLINE macros to disable and enable interrupts.}
  2.  
  3. PROCEDURE disable_interrupts;
  4. INLINE
  5.   (
  6.   $FA    {CLI}
  7.   );
  8.  
  9. PROCEDURE enable_interrupts;
  10. INLINE
  11.   (
  12.   $FB    {STI}
  13.   );
  14.  
  15.  
  16.