home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name utintoff -- Disable maskable hardware interrupts
- ; (Formerly called PCINTOFF.)
- ;
- ; Synopsis were_on = utintoff();
- ;
- ; int were_on 1 if interrupts were enabled before
- ; the call, 0 if not.
- ;
- ; Description This function disables 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 utintoff
-
- 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 utintoff
- if LPROG
- x equ 6 ; parameter offset
- utintoff proc far
- else
- x equ 4
- utintoff proc near
- endif
- endif
-
- if CI201A
- include model.h
- include prologue.h
- LONGPROG = @bigmodel
- LONGDATA = @bigmodel
-
- public utintoff
- if @bigmodel
- x equ 6 ; parameter offset
- utintoff proc far
- else
- x equ 4
- utintoff proc near
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg utintoff
- public _utintoff
- if LPROG
- x equ 6 ; parameter offset
- _utintoff proc far
- else
- x equ 4
- _utintoff proc near
- endif
- endif
-
- pushf ; Examine previous interrupt
- pop ax ; state: bit 9 of flags
- test ah,2
- jnz ints_on
-
- xor ax,ax ; Interrupts were disabled
- jmp short done
-
- ints_on:
- mov ax,1 ; Interrupts were enabled
- cli ; Disable interrupts.
-
- done:
- if MSC300
- cld ; Expected by MS C 3.0.
- endif
-
- ret
-
- if MSC300
- _utintoff endp
- else
- utintoff endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if CI201A
- include epilogue.h
- endif
-
- if MSC300
- endps utintoff
- endif
-
- end