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

📄 fpa_support.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/*	@(#)fpa_support.h 1.1 92/07/30 SMI	*//* * Copyright (c) 1989 by Sun Microsystems, Inc. */#define FPABASE 0xe0000000#define STATIC staticextern double fpa_transcendental( ) ;extern double fpa_tolong( ) ;union   singlekluge	{	float x ;	long  i[1] ;	} ;union   doublekluge	{	double x ;	long   i[2] ;	} ;typedef union 		{	double d;	float  f[2];	} complexunion;typedef double *pdouble;typedef union	{	double d ;	pdouble pd[2];	}	pdoublekluge;struct inststruct		/* Instruction format. */ 	{ /* Instruction field, including valid bit. */	unsigned short valid : 1 ;	unsigned hijunk : 2 ;	unsigned op : 6 ;	unsigned reg1 : 4 ;	unsigned prec : 1 ;	unsigned lojunk : 2 ; 	} ;struct fpa_access		/* Record for one fpa access. */	{	union 		{		short kint ;		struct inststruct kis ;		} kluge ;	long	data ;		/* Data field - 32 bits. */	} ;struct fpa_inst			/* Record for one fpa instruction. */	{	struct fpa_access a[2] ; 	} ;

⌨️ 快捷键说明

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