floorf.s 748 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: floorf.s,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:floorf
-----------------------------------------------------------------------------
書式:	#include <math.h>
	float floorf(float x);
引数:	x 元の値
戻り値:x 以下で最大の整数値
説明:	x 以下で最大の整数値を求める
-----------------------------------------------------------------------------
*/
	.text
	.set	reorder
	.align	4
	.ent	floorf
	.globl	floorf
floorf:
	floor.w.s	$f14,$f12
	cvt.s.w		$f0,$f14
	jr	$31
	.end	floorf