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