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