home *** CD-ROM | disk | FTP | other *** search
- Comment *
- ┌────────────────────────────────────────────────────────────────────────────┐
- │Cli.asm │
- │Clears the interrupt flag from C. │
- │Usage: Cli │
- └────────────────────────────────────────────────────────────────────────────┘
- *
-
- assume cs:_text
- _text segment public byte 'code'
- public _cli
-
- _cli proc near
- cli
- ret
- _cli endp
- _text ends
- end