* configure.in: added missing mcs51 in status output
[fw/sdcc] / device / lib / _fseq.c
1 /* Floating point library in optimized assembly for 8051
2  * Copyright (c) 2004, Paul Stoffregen, paul@pjrc.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19
20 #define SDCC_FLOAT_LIB
21 #include <float.h>
22
23
24 #ifdef FLOAT_ASM_MCS51
25
26 // char __fseq (float a, float b)
27 static void dummy(void) _naked
28 {
29         _asm
30         .globl  ___fseq
31 ___fseq:
32         mov     r7, a
33         mov     r0, sp
34         dec     r0
35         dec     r0
36         lcall   fs_check_negative_zeros
37         lcall   fs_compare_uint32
38         mov     a, r1
39         xrl     a, #1
40         mov     dpl, a
41         ret
42         _endasm;
43 }
44
45 #else
46
47
48
49
50 /*
51 ** libgcc support for software floating point.
52 ** Copyright (C) 1991 by Pipeline Associates, Inc.  All rights reserved.
53 ** Permission is granted to do *anything* you want with this file,
54 ** commercial or otherwise, provided this message remains intact.  So there!
55 ** I would appreciate receiving any updates/patches/changes that anyone
56 ** makes, and am willing to be the repository for said changes (am I
57 ** making a big mistake?).
58 **
59 ** Pat Wood
60 ** Pipeline Associates, Inc.
61 ** pipeline!phw@motown.com or
62 ** sun!pipeline!phw or
63 ** uunet!motown!pipeline!phw
64 */
65
66 /* (c)2000/2001: hacked a little by johan.knol@iduna.nl for sdcc */
67
68
69 union float_long
70   {
71     float f;
72     long l;
73   };
74
75 /* compare two floats */
76 char
77 __fseq (float a1, float a2)
78 {
79   volatile union float_long fl1, fl2;
80
81   fl1.f = a1;
82   fl2.f = a2;
83
84   if (fl1.l == fl2.l)
85     return (1);
86   return (0);
87 }
88
89 #endif
90