⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setprec.688

📁 数学运算库源码
💻 688
字号:
/* Set 68881/2 floating point rounding precision *//* Reference: MC68881/MC68882 Floating-Point Coprocessor *//* User's Manual, Motorola, Prentice-Hall, 1987 (First Edition) *//* Pages 1-14, 2-3, 4-68. *//* FPcr code $80 sets the 68882 coprocessor to *//*    rounding precision = 53 bits *//*    rounding mode = nearest or even *//*    all exceptions (bits 8-15) disabled *//* The instruction is *//*	FMOVE.L	#$80,Fcr *//* if the assembler will understand it. */	.align 2.text/* set to single precision */.globl _sprec_sprec	.word 0xf23c,0x9000,0x0000,0x0040	rts/* set to double precision */.globl _dprec_dprec:	.word	0xf23c,0x9000,0x0000,0x0080	rts/* set to extended (long double) precision */.globl _ldprec_ldprec:	.word	0xf23c,0x9000,0x0000,0x0000	rts

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -