mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
587 B
31 lines
587 B
/***
|
|
*fpinit.c - Initialize floating point
|
|
*
|
|
* Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
*
|
|
*Revision History:
|
|
* 12-02-92 PLM created
|
|
*
|
|
*******************************************************************************/
|
|
#include <cv.h>
|
|
#include <trans.h>
|
|
|
|
typedef void (*PFV)(void);
|
|
extern PFV _cfltcvt_tab[6]; //floating init routines
|
|
|
|
/* define the entry in initializer table */
|
|
|
|
|
|
extern PFV _ldused;
|
|
|
|
|
|
//this routine will only be pulled when _ldused is referenced
|
|
void _ldinit()
|
|
{
|
|
|
|
_cfltcvt_tab[5] = (PFV) _cldcvt;
|
|
return;
|
|
}
|
|
|