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 |
171 |
|
typedef uae_u32 uaecptr; |
172 |
|
|
173 |
|
/* Alignment restrictions */ |
174 |
< |
#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) |
174 |
> |
#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) || defined(__x86_64__) |
175 |
|
# define CPU_CAN_ACCESS_UNALIGNED |
176 |
|
#endif |
177 |
|
|
219 |
|
|
220 |
|
#else /* WORDS_BIGENDIAN */ |
221 |
|
|
222 |
< |
#ifdef __i386__ |
222 |
> |
#if defined(__i386__) || defined(__x86_64__) |
223 |
|
|
224 |
|
/* Intel x86 */ |
225 |
|
#define X86_PPRO_OPT |
292 |
|
#undef USE_MAPPED_MEMORY |
293 |
|
#undef CAN_MAP_MEMORY |
294 |
|
|
295 |
< |
#ifdef X86_ASSEMBLY |
295 |
> |
#if defined(X86_ASSEMBLY) || defined(X86_64_ASSEMBLY) |
296 |
|
#define ASM_SYM_FOR_FUNC(a) __asm__(a) |
297 |
|
#else |
298 |
|
#define ASM_SYM_FOR_FUNC(a) |