4 |
|
* |
5 |
|
* $Id$ |
6 |
|
* |
7 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
7 |
> |
* Basilisk II (C) 1997-2004 Christian Bauer |
8 |
|
* |
9 |
|
* This program is free software; you can redistribute it and/or modify |
10 |
|
* it under the terms of the GNU General Public License as published by |
46 |
|
#include <stdlib.h> |
47 |
|
#include <string.h> |
48 |
|
|
49 |
+ |
#ifdef HAVE_PTHREADS |
50 |
+ |
# include <pthread.h> |
51 |
+ |
#endif |
52 |
+ |
|
53 |
|
#ifdef HAVE_FCNTL_H |
54 |
|
# include <fcntl.h> |
55 |
|
#endif |
66 |
|
#endif |
67 |
|
|
68 |
|
|
69 |
< |
#include <AvailabilityMacros.h> |
69 |
> |
#ifdef AVAILABILITYMACROS |
70 |
> |
# include <AvailabilityMacros.h> |
71 |
> |
#endif |
72 |
|
|
73 |
|
/* Emulator and host address space are distinct */ |
74 |
|
#ifndef REAL_ADDRESSING |
75 |
|
# define REAL_ADDRESSING 0 |
76 |
|
#endif |
77 |
|
|
72 |
– |
/* Linear address translation (i.e. just an offset between Emulator & host) */ |
73 |
– |
#ifndef DIRECT_ADDRESSING |
74 |
– |
# ifdef MAC_OS_X_VERSION_10_2 |
75 |
– |
/* For some reason, compiling on 10.2 with DIRECT_ADDRESSING enabled */ |
76 |
– |
/* gives an app that doesn't seem to me able to write to its screen! */ |
77 |
– |
# define DIRECT_ADDRESSING 0 |
78 |
– |
# else |
79 |
– |
# define DIRECT_ADDRESSING 1 |
80 |
– |
# endif |
81 |
– |
#endif |
82 |
– |
|
78 |
|
/* Using 68k emulator */ |
79 |
|
#define EMULATED_68K 1 |
80 |
|
|
89 |
|
# define ROM_IS_WRITE_PROTECTED 1 |
90 |
|
#endif |
91 |
|
|
92 |
+ |
/* Direct Addressing requires Video on SEGV signals */ |
93 |
+ |
#if DIRECT_ADDRESSING && !ENABLE_VOSF |
94 |
+ |
# undef ENABLE_VOSF |
95 |
+ |
# define ENABLE_VOSF 1 |
96 |
+ |
#endif |
97 |
|
|
98 |
|
/* ExtFS is supported */ |
99 |
|
#define SUPPORTS_EXTFS 1 |
100 |
|
|
101 |
+ |
/* BSD socket API supported */ |
102 |
+ |
#define SUPPORTS_UDP_TUNNEL 1 |
103 |
|
|
104 |
|
/* Data types */ |
105 |
|
typedef unsigned char uint8; |
145 |
|
#error "Unsupported size of pointer" |
146 |
|
#endif |
147 |
|
|
148 |
+ |
#ifndef HAVE_LOFF_T |
149 |
+ |
typedef off_t loff_t; |
150 |
+ |
#endif |
151 |
+ |
#ifndef HAVE_CADDR_T |
152 |
+ |
typedef char * caddr_t; |
153 |
+ |
#endif |
154 |
+ |
|
155 |
|
/* Time data type for Time Manager emulation */ |
156 |
|
#ifdef HAVE_CLOCK_GETTIME |
157 |
|
typedef struct timespec tm_time_t; |
159 |
|
typedef struct timeval tm_time_t; |
160 |
|
#endif |
161 |
|
|
162 |
< |
/* Offset Mac->Unix time in seconds */ |
163 |
< |
#define TIME_OFFSET 0x7c25b080 |
162 |
> |
/* Define codes for all the float formats that we know of. |
163 |
> |
* Though we only handle IEEE format. */ |
164 |
> |
#define UNKNOWN_FLOAT_FORMAT 0 |
165 |
> |
#define IEEE_FLOAT_FORMAT 1 |
166 |
> |
#define VAX_FLOAT_FORMAT 2 |
167 |
> |
#define IBM_FLOAT_FORMAT 3 |
168 |
> |
#define C4X_FLOAT_FORMAT 4 |
169 |
|
|
170 |
|
/* UAE CPU data types */ |
171 |
|
#define uae_s8 int8 |
179 |
|
typedef uae_u32 uaecptr; |
180 |
|
|
181 |
|
/* Alignment restrictions */ |
182 |
< |
#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) |
182 |
> |
#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) || defined(__x86_64__) |
183 |
|
# define CPU_CAN_ACCESS_UNALIGNED |
184 |
|
#endif |
185 |
|
|
187 |
|
extern uint64 GetTicks_usec(void); |
188 |
|
extern void Delay_usec(uint32 usec); |
189 |
|
|
190 |
+ |
#ifdef HAVE_PTHREADS |
191 |
+ |
/* Centralized pthread attribute setup */ |
192 |
+ |
void Set_pthread_attr(pthread_attr_t *attr, int priority); |
193 |
+ |
#endif |
194 |
+ |
|
195 |
|
/* UAE CPU defines */ |
196 |
|
#ifdef WORDS_BIGENDIAN |
197 |
|
|
232 |
|
|
233 |
|
#else /* WORDS_BIGENDIAN */ |
234 |
|
|
235 |
< |
#ifdef __i386__ |
235 |
> |
#if defined(__i386__) || defined(__x86_64__) |
236 |
|
|
237 |
|
/* Intel x86 */ |
238 |
|
#define X86_PPRO_OPT |
302 |
|
#define ENUMDECL typedef enum |
303 |
|
#define ENUMNAME(name) name |
304 |
|
#define write_log printf |
286 |
– |
#undef USE_MAPPED_MEMORY |
287 |
– |
#undef CAN_MAP_MEMORY |
305 |
|
|
306 |
< |
#ifdef X86_ASSEMBLY |
306 |
> |
#if defined(X86_ASSEMBLY) || defined(X86_64_ASSEMBLY) |
307 |
|
#define ASM_SYM_FOR_FUNC(a) __asm__(a) |
308 |
|
#else |
309 |
|
#define ASM_SYM_FOR_FUNC(a) |