home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / c / jazlib.arc / STI.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-02-10  |  129 b   |  11 lines

  1.     assume cs:_text
  2. _text    segment public byte 'code'
  3.     public _sti
  4.  
  5. _sti    proc near
  6.     sti
  7.     ret
  8. _sti        endp
  9. _text    ends
  10. end
  11.