home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name utinton -- Enable maskable hardware interrupts
- ; (Formerly called PCINTON.)
- ;
- ; Synopsis were_on = utinton();
- ;
- ; int were_on 1 if interrupts were enabled before
- ; the call, 0 if not.
- ;
- ; Description This function enables hardware interrupts.
- ;
- ; Returns were_on 1 if interrupts were enabled before
- ; the call, 0 if not.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983,1984,1985,1986
-
- name utinton
-
- LONGPROG = 0 ; initialize constants for
- LONGDATA = 0 ; Pass1 of the assembler
-
- include compiler.mac ; Specifies the C compiler
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg
- public utinton
- if LPROG
- x equ 6 ; parameter offset
- utinton proc far
- else
- x equ 4
- utinton proc near
- endif
- endif
-
- if CI201A
- include model.h
- include prologue.h
- LONGPROG = @bigmodel
- LONGDATA = @bigmodel
-
- public utinton
- if @bigmodel
- x equ 6 ; parameter offset
- utinton proc far
- else
- x equ 4
- utinton proc near
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg utinton
- public _utinton
- if LPROG
- x equ 6 ; parameter offset
- _utinton proc far
- else
- x equ 4
- _utinton proc near
- endif
- endif
-
- pushf ; Examine previous interrupt
- pop ax ; state: bit 9 of flags
- test ah,2
- jz ints_off
-
- mov ax,1 ; Interrupts were enabled
- jmp short done
-
- ints_off:
- xor ax,ax ; Interrupts were disabled
- sti ; Enable interrupts.
-
- done:
- if MSC300
- cld ; Expected by MS C 3.0.
- endif
-
- ret
-
- if MSC300
- _utinton endp
- else
- utinton endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if CI201A
- include epilogue.h
- endif
-
- if MSC300
- endps utinton
- endif
-
- end