home *** CD-ROM | disk | FTP | other *** search
- ; ***********
- ; * CLI.asm *
- ; *******************************************
- ; * Copyright TimeSlice, Inc. 1985, 86, 87. *
- ; *******************************************
- ;
- include ts.inc
- ;
- start_data
- end_data
- ;
- start_code
- ;
- ;**********
- ;* CLI()
- ;* Clear Interrupt Mask : i.e., holds interrupts.
- ;**********
- routine _cli
- pushf ;save flags to return them
- pop ax
- cli
- return _cli
- ;
- ;
- end_code
-