1*0a6a1f1dSLionel Sambuc /* $NetBSD: milieu.h,v 1.1 2014/09/03 19:34:26 matt Exp $ */ 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc /* 4*0a6a1f1dSLionel Sambuc =============================================================================== 5*0a6a1f1dSLionel Sambuc 6*0a6a1f1dSLionel Sambuc This C header file is part of the SoftFloat IEC/IEEE Floating-point 7*0a6a1f1dSLionel Sambuc Arithmetic Package, Release 2a. 8*0a6a1f1dSLionel Sambuc 9*0a6a1f1dSLionel Sambuc Written by John R. Hauser. This work was made possible in part by the 10*0a6a1f1dSLionel Sambuc International Computer Science Institute, located at Suite 600, 1947 Center 11*0a6a1f1dSLionel Sambuc Street, Berkeley, California 94704. Funding was partially provided by the 12*0a6a1f1dSLionel Sambuc National Science Foundation under grant MIP-9311980. The original version 13*0a6a1f1dSLionel Sambuc of this code was written as part of a project to build a fixed-point vector 14*0a6a1f1dSLionel Sambuc processor in collaboration with the University of California at Berkeley, 15*0a6a1f1dSLionel Sambuc overseen by Profs. Nelson Morgan and John Wawrzynek. More information 16*0a6a1f1dSLionel Sambuc is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 17*0a6a1f1dSLionel Sambuc arithmetic/SoftFloat.html'. 18*0a6a1f1dSLionel Sambuc 19*0a6a1f1dSLionel Sambuc THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 20*0a6a1f1dSLionel Sambuc has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT 21*0a6a1f1dSLionel Sambuc TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO 22*0a6a1f1dSLionel Sambuc PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY 23*0a6a1f1dSLionel Sambuc AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. 24*0a6a1f1dSLionel Sambuc 25*0a6a1f1dSLionel Sambuc Derivative works are acceptable, even for commercial purposes, so long as 26*0a6a1f1dSLionel Sambuc (1) they include prominent notice that the work is derivative, and (2) they 27*0a6a1f1dSLionel Sambuc include prominent notice akin to these four paragraphs for those parts of 28*0a6a1f1dSLionel Sambuc this code that are retained. 29*0a6a1f1dSLionel Sambuc 30*0a6a1f1dSLionel Sambuc =============================================================================== 31*0a6a1f1dSLionel Sambuc */ 32*0a6a1f1dSLionel Sambuc 33*0a6a1f1dSLionel Sambuc /* 34*0a6a1f1dSLionel Sambuc ------------------------------------------------------------------------------- 35*0a6a1f1dSLionel Sambuc Include common integer types and flags. 36*0a6a1f1dSLionel Sambuc ------------------------------------------------------------------------------- 37*0a6a1f1dSLionel Sambuc */ 38*0a6a1f1dSLionel Sambuc #include "or1k-gcc.h" 39*0a6a1f1dSLionel Sambuc 40*0a6a1f1dSLionel Sambuc /* 41*0a6a1f1dSLionel Sambuc ------------------------------------------------------------------------------- 42*0a6a1f1dSLionel Sambuc Symbolic Boolean literals. 43*0a6a1f1dSLionel Sambuc ------------------------------------------------------------------------------- 44*0a6a1f1dSLionel Sambuc */ 45*0a6a1f1dSLionel Sambuc enum { 46*0a6a1f1dSLionel Sambuc FALSE = 0, 47*0a6a1f1dSLionel Sambuc TRUE = 1 48*0a6a1f1dSLionel Sambuc }; 49