single_cpdo.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | single_cpdo.c (74ba9207e1adf1966c57450340534ae9742d00af) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later |
|
1/* 2 NetWinder Floating Point Emulator 3 (c) Rebel.COM, 1998,1999 4 (c) Philip Blundell, 2001 5 6 Direct questions, comments to Scott Bambrough <scottb@netwinder.org> 7 | 2/* 3 NetWinder Floating Point Emulator 4 (c) Rebel.COM, 1998,1999 5 (c) Philip Blundell, 2001 6 7 Direct questions, comments to Scott Bambrough <scottb@netwinder.org> 8 |
8 This program is free software; you can redistribute it and/or modify 9 it under the terms of the GNU General Public License as published by 10 the Free Software Foundation; either version 2 of the License, or 11 (at your option) any later version. 12 13 This program is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU General Public License for more details. 17 18 You should have received a copy of the GNU General Public License 19 along with this program; if not, write to the Free Software 20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
21*/ 22 23#include "fpa11.h" 24#include "softfloat.h" 25#include "fpopcode.h" 26 27float32 float32_exp(float32 Fm); 28float32 float32_ln(float32 Fm); --- 96 unchanged lines hidden --- | 9*/ 10 11#include "fpa11.h" 12#include "softfloat.h" 13#include "fpopcode.h" 14 15float32 float32_exp(float32 Fm); 16float32 float32_ln(float32 Fm); --- 96 unchanged lines hidden --- |