home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / snip0891.arj / NDPCHECK.ASM < prev    next >
Assembly Source File  |  1991-08-13  |  1KB  |  40 lines

  1. ;
  2. ;  FUNCTION:  ndp_check
  3. ;
  4. ;  Require MASM 5.1 or later, or equivalent
  5. ;
  6.  
  7.         page    55, 132
  8.  
  9. %       .MODEL  memodel,C               ;Add model support via
  10.                                         ;command line macros, e.g.
  11.                                         ;MASM /Mx /Dmemodel=LARGE
  12.  
  13.         .CODE
  14.  
  15. control dw      0
  16.  
  17. ;---------------------------------------------------------------
  18. ;
  19. ; Check for an NDP.
  20. ;
  21. ;  Returns 0 if no coprocessor
  22. ;  Returns 1 if coprocessor present
  23.  
  24. ndp_check       PROC    USES BX
  25.         xor     BX,BX                    ; set up zero return
  26.         fninit                           ; try to initialize the NDP
  27.         mov     byte ptr control+1,0     ; clear memory byte
  28.         fnstcw  control                  ; put control word in memory
  29.         mov     AH,byte ptr control+1    ; if AH is 03h, you got
  30.         cmp     AH,03h                   ;   an NDP on board !!
  31.         jne     SHORT NDPbye
  32.         inc     BX
  33. NDPbye:
  34.         mov     AX,BX
  35.         ret
  36.  
  37. ndp_check       ENDP
  38.  
  39.         end
  40.