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.
29 lines
469 B
29 lines
469 B
/***
|
|
*fsqrt.s - square root helper
|
|
*
|
|
* Copyright (c) 1991-1991, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Square root helper routine to be used with the R4000
|
|
*
|
|
*Revision History:
|
|
* 10-20-91 GDP written
|
|
*
|
|
*******************************************************************************/
|
|
#ifdef R4000
|
|
|
|
#include <kxmips.h>
|
|
|
|
.text
|
|
.globl _fsqrt
|
|
|
|
.ent _fsqrt
|
|
_fsqrt:
|
|
.frame sp,0,ra
|
|
.prologue 0
|
|
sqrt.d $f0, $f12
|
|
j ra
|
|
|
|
.end _fsqrt
|
|
|
|
#endif
|