ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/BeOS/sysdeps.h
Revision: 1.13
Committed: 2001-07-03T15:59:46Z (23 years ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.12: +0 -2 lines
Log Message:
- added support for platform-independant mutexes, currently only properly
  implemented under Unix
- adb.cpp uses mutexes for thread-safe mouse handling
- video_x.cpp: pressing Ctrl-F5 in windowed mode switches to a "grabbed"
  relative mouse mode, useful for some games
- video_x.cpp: fixed some bugs relating to the hotkeys (key releases are no
  longer treated as hotkeys)

File Contents

# Content
1 /*
2 * sysdeps.h - System dependent definitions for BeOS
3 *
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
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
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>
31
32 #include "user_strings_beos.h"
33
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 // Using 68k emulator
44 #define EMULATED_68K 1
45
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 // mon is not supported
53 #undef ENABLE_MON
54
55 // Time data type for Time Manager emulation
56 typedef bigtime_t tm_time_t;
57
58 // Offset Mac->BeOS time in seconds
59 #define TIME_OFFSET 0x7c25b080
60
61 // 64 bit file offsets
62 typedef off_t loff_t;
63
64 // UAE CPU data types
65 #define uae_s8 int8
66 #define uae_u8 uint8
67 #define uae_s16 int16
68 #define uae_u16 uint16
69 #define uae_s32 int32
70 #define uae_u32 uint32
71 #define uae_s64 int64
72 #define uae_u64 uint64
73 typedef uae_u32 uaecptr;
74 #define VAL64(a) (a ## LL)
75 #define UVAL64(a) (a ## uLL)
76 typedef uint32 uintptr;
77 typedef int32 intptr;
78
79 // UAE CPU defines
80 #ifdef __i386__
81
82 // Intel x86 assembler optimizations
83 #define X86_PPRO_OPT
84 static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint32 retval; __asm__ ("bswap %0" : "=r" (retval) : "0" (*a) : "cc"); return retval;}
85 #ifdef X86_PPRO_OPT
86 static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint32 retval; __asm__ ("movzwl %w1,%k0\n\tshll $16,%k0\n\tbswap %k0\n" : "=&r" (retval) : "m" (*a) : "cc"); return retval;}
87 #else
88 static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint32 retval; __asm__ ("xorl %k0,%k0\n\tmovw %w1,%w0\n\trolw $8,%w0" : "=&r" (retval) : "m" (*a) : "cc"); return retval;}
89 #endif
90 #define HAVE_GET_WORD_UNSWAPPED
91 #define do_get_mem_word_unswapped(a) ((uae_u32)*((uae_u16 *)(a)))
92 static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {__asm__ ("bswap %0" : "=r" (v) : "0" (v) : "cc"); *a = v;}
93 #ifdef X86_PPRO_OPT
94 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("bswap %0" : "=&r" (v) : "0" (v << 16) : "cc"); *a = v;}
95 #else
96 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("rolw $8,%0" : "=r" (v) : "0" (v) : "cc"); *a = v;}
97 #endif
98
99 #define X86_ASSEMBLY
100 #define UNALIGNED_PROFITABLE
101 #define OPTIMIZED_FLAGS
102 #define ASM_SYM_FOR_FUNC(a) __asm__(a)
103 #define REGPARAM __attribute__((regparm(3)))
104
105 #else
106
107 // PowerPC (memory.cpp not used, so no optimization neccessary)
108 static inline uae_u32 do_get_mem_long(uae_u32 *a) {return *a;}
109 static inline uae_u32 do_get_mem_word(uae_u16 *a) {return *a;}
110 static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {*a = v;}
111 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = v;}
112
113 #undef X86_ASSEMBLY
114 #define UNALIGNED_PROFITABLE
115 #undef OPTIMIZED_FLAGS
116 #define ASM_SYM_FOR_FUNC(a)
117 #define REGPARAM
118 #endif
119
120 #define do_get_mem_byte(a) ((uae_u32)*((uae_u8 *)(a)))
121 #define do_put_mem_byte(a, v) (*(uae_u8 *)(a) = (v))
122
123 #define call_mem_get_func(func, addr) ((*func)(addr))
124 #define call_mem_put_func(func, addr, v) ((*func)(addr, v))
125 #define __inline__ inline
126 #define CPU_EMU_SIZE 0
127 #undef NO_INLINE_MEMORY_ACCESS
128 #undef MD_HAVE_MEM_1_FUNCS
129 #undef USE_COMPILER
130 #define REGPARAM2
131 #define ENUMDECL typedef enum
132 #define ENUMNAME(name) name
133 #define write_log printf
134
135 #endif