Subversion Repositories HelenOS-historic

Rev

Rev 698 | Rev 734 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 698 Rev 731
Line 26... Line 26...
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#include<softfloat.h>
29
#include<softfloat.h>
30
#include<sftypes.h>
30
#include<sftypes.h>
-
 
31
 
-
 
32
#include<add.h>
-
 
33
#include<sub.h>
-
 
34
#include<mul.h>
31
#include<arithmetic.h>
35
#include<div.h>
-
 
36
 
32
#include<conversion.h>
37
#include<conversion.h>
33
#include<comparison.h>
38
#include<comparison.h>
34
#include<other.h>
39
#include<other.h>
35
 
40
 
36
/* Arithmetic functions */
41
/* Arithmetic functions */
Line 74... Line 79...
74
float __divsf3(float a, float b)
79
float __divsf3(float a, float b)
75
{
80
{
76
    float32 fa, fb;
81
    float32 fa, fb;
77
    fa.f=a;
82
    fa.f=a;
78
    fb.f=b;
83
    fb.f=b;
79
//  return  divFloat32(fa, fb).f;
84
    //return    divFloat32(fa, fb).f;
80
}
85
}
81
 
86
 
82
float __negsf2(float a)
87
float __negsf2(float a)
83
{
88
{
84
    float32 fa;
89
    float32 fa;