home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / s / s001 / 1.ddi / TS / ASM / CLI.ASM next >
Encoding:
Assembly Source File  |  1990-01-08  |  449 b   |  26 lines

  1. ;                  ***********
  2. ;                  * CLI.asm *
  3. ;               *******************************************
  4. ;               * Copyright TimeSlice, Inc. 1985, 86, 87. *
  5. ;               *******************************************
  6. ;
  7. include ts.inc
  8. ;
  9. start_data
  10. end_data
  11. ;
  12. start_code
  13. ;
  14. ;**********
  15. ;* CLI()
  16. ;* Clear Interrupt Mask : i.e., holds interrupts.
  17. ;**********
  18. routine _cli
  19.     pushf            ;save flags to return them
  20.     pop    ax
  21.     cli
  22. return    _cli
  23. ;
  24. ;
  25. end_code
  26.