mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
Solaris/SPARC host port (Ben Taylor)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1979 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
43057ab127
commit
fdbb46910a
9 changed files with 104 additions and 24 deletions
|
@ -8,6 +8,13 @@
|
|||
#include "cpu-defs.h"
|
||||
#include "softfloat.h"
|
||||
|
||||
// uint_fast8_t and uint_fast16_t not in <sys/int_types.h>
|
||||
// XXX: move that elsewhere
|
||||
#if defined(HOST_SOLARIS) && SOLARISREV < 10
|
||||
typedef unsigned char uint_fast8_t;
|
||||
typedef unsigned int uint_fast16_t;
|
||||
#endif
|
||||
|
||||
typedef union fpr_t fpr_t;
|
||||
union fpr_t {
|
||||
float64 fd; /* ieee double precision */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue