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