1 |
|
/* |
2 |
|
* sysdeps.h - System dependent definitions for BeOS |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2001 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
21 |
|
#ifndef SYSDEPS_H |
22 |
|
#define SYSDEPS_H |
23 |
|
|
24 |
+ |
#ifdef __POWERPC__ |
25 |
+ |
#define NO_STD_NAMESPACE |
26 |
+ |
#endif |
27 |
+ |
|
28 |
|
#include <assert.h> |
29 |
|
#include <support/SupportDefs.h> |
30 |
|
#include <support/ByteOrder.h> |
34 |
|
// Are the Mac and the host address space the same? |
35 |
|
#ifdef __i386__ |
36 |
|
#define REAL_ADDRESSING 0 |
37 |
+ |
#undef WORDS_BIGENDIAN |
38 |
|
#else |
39 |
|
#define REAL_ADDRESSING 1 |
40 |
+ |
#define WORDS_BIGENDIAN 1 |
41 |
|
#endif |
42 |
|
|
43 |
< |
// Are we using a 68k emulator or the real thing? |
43 |
> |
// Using 68k emulator |
44 |
|
#define EMULATED_68K 1 |
45 |
|
|
46 |
< |
// Is the Mac ROM write protected? |
46 |
> |
// Mac ROM is write protected |
47 |
|
#define ROM_IS_WRITE_PROTECTED 1 |
48 |
|
|
49 |
+ |
// ExtFS is supported |
50 |
+ |
#define SUPPORTS_EXTFS 1 |
51 |
+ |
|
52 |
+ |
// BSD socket API is supported |
53 |
+ |
#define SUPPORTS_UDP_TUNNEL 1 |
54 |
+ |
|
55 |
+ |
// mon is not supported |
56 |
+ |
#undef ENABLE_MON |
57 |
+ |
|
58 |
|
// Time data type for Time Manager emulation |
59 |
|
typedef bigtime_t tm_time_t; |
60 |
|
|
46 |
– |
// Offset Mac->BeOS time in seconds |
47 |
– |
#define TIME_OFFSET 0x7c25b080 |
48 |
– |
|
61 |
|
// 64 bit file offsets |
62 |
|
typedef off_t loff_t; |
63 |
|
|
64 |
+ |
// Networking types |
65 |
+ |
#define PF_INET AF_INET |
66 |
+ |
typedef int socklen_t; |
67 |
+ |
|
68 |
|
// UAE CPU data types |
69 |
|
#define uae_s8 int8 |
70 |
|
#define uae_u8 uint8 |
72 |
|
#define uae_u16 uint16 |
73 |
|
#define uae_s32 int32 |
74 |
|
#define uae_u32 uint32 |
75 |
+ |
#define uae_s64 int64 |
76 |
+ |
#define uae_u64 uint64 |
77 |
|
typedef uae_u32 uaecptr; |
78 |
+ |
#define VAL64(a) (a ## LL) |
79 |
+ |
#define UVAL64(a) (a ## uLL) |
80 |
+ |
typedef uint32 uintptr; |
81 |
+ |
typedef int32 intptr; |
82 |
|
|
83 |
|
// UAE CPU defines |
84 |
|
#ifdef __i386__ |
101 |
|
#endif |
102 |
|
|
103 |
|
#define X86_ASSEMBLY |
104 |
+ |
#define UNALIGNED_PROFITABLE |
105 |
+ |
#define OPTIMIZED_FLAGS |
106 |
|
#define ASM_SYM_FOR_FUNC(a) __asm__(a) |
107 |
|
#define REGPARAM __attribute__((regparm(3))) |
108 |
|
|
115 |
|
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = v;} |
116 |
|
|
117 |
|
#undef X86_ASSEMBLY |
118 |
+ |
#define UNALIGNED_PROFITABLE |
119 |
+ |
#undef OPTIMIZED_FLAGS |
120 |
|
#define ASM_SYM_FOR_FUNC(a) |
121 |
|
#define REGPARAM |
122 |
|
#endif |
128 |
|
#define call_mem_put_func(func, addr, v) ((*func)(addr, v)) |
129 |
|
#define __inline__ inline |
130 |
|
#define CPU_EMU_SIZE 0 |
105 |
– |
#undef USE_MAPPED_MEMORY |
106 |
– |
#undef CAN_MAP_MEMORY |
131 |
|
#undef NO_INLINE_MEMORY_ACCESS |
132 |
|
#undef MD_HAVE_MEM_1_FUNCS |
133 |
|
#undef USE_COMPILER |