brender-1997/3dfx/FPUSTUB.ASM
2022-05-03 14:31:40 -07:00

34 lines
547 B
NASM

; Last change: SL 25 Jul 96 12:06 pm
;; Copyright (c) 1992,1993-1995 Argonaut Technologies Limited. All rights reserved.
;;
;; $Id: FPUSTUB.ASM 1.2 1996/12/04 17:53:24 sam Exp $
;; $Locker: $
;;
;; Stubs to suppress FPU setup in DLL's
;;
.386p
.model flat
.data
ifdef __DRIVER__
public __8087
public __init_387_emulator
public _fltused_
public __fltused
__8087 dd 0
__init_387_emulator dd 0
_fltused_ dd 0
__fltused dd 0
.code
public __PRO
public __EPI
__PRO label near
__EPI label near
ret
endif
end