home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / JAZLIB.ARC / CLI.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-04-06  |  545 b   |  19 lines

  1. Comment *
  2. ┌────────────────────────────────────────────────────────────────────────────┐
  3. │Cli.asm                                                                     │
  4. │Clears the interrupt flag from C.                                           │
  5. │Usage: Cli                                                                  │
  6. └────────────────────────────────────────────────────────────────────────────┘
  7. *
  8.  
  9.     assume cs:_text
  10. _text    segment public byte 'code'
  11.     public _cli
  12.  
  13. _cli    proc near
  14.     cli
  15.     ret
  16. _cli        endp
  17. _text    ends
  18. end
  19.