fmod.s
来自「操作系统SunOS 4.1.3版本的源码」· S 代码 · 共 30 行
S
30 行
| .data| .asciz "@(#)fmod.s 1.1 92/07/30 SMI" .even .text| Copyright (c) 1987 by Sun Microsystems, Inc.#include "fpcrtdefs.h"/* * double * fmod ( x, y ) * double x, y ; * * return a value v such that (x-v)/y is an integral value * and sign(v) = sign(x), which is equivalent to Fortran MOD. */ENTRY(fmod) moveml PARAM,d0/d1 | d0/d1 gets x. lea PARAM3,a0 | a0 gets address of y.#ifdef PIC movl a2,sp@- | transparent#endif PIC JBSR(Vmodd,a1)#ifdef PIC movl sp@+,a2#endif PIC RET
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?