2012-08-04 18:06:17 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-08-04 14:24:59 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2014.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of Sortix.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
x86-family/float.h
|
|
|
|
Handles saving and restoration of floating point numbers.
|
2012-08-04 18:06:17 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SORTIX_FLOAT_H
|
|
|
|
#define SORTIX_FLOAT_H
|
|
|
|
|
2014-03-03 18:11:13 -05:00
|
|
|
#include <stdint.h>
|
2013-01-14 08:38:21 -05:00
|
|
|
|
2014-03-03 18:11:13 -05:00
|
|
|
namespace Sortix {
|
2012-08-04 18:06:17 -04:00
|
|
|
namespace Float {
|
|
|
|
|
2014-03-03 18:11:13 -05:00
|
|
|
extern "C" uint8_t fpu_initialized_regs[512];
|
2012-08-04 18:06:17 -04:00
|
|
|
|
|
|
|
} // namespace Float
|
|
|
|
} // namespace Sortix
|
2014-03-03 18:11:13 -05:00
|
|
|
|
2012-08-04 18:06:17 -04:00
|
|
|
#endif
|