1 |
|
/* |
2 |
|
* sysdeps.h - System dependent definitions for BeOS |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2000 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 |
30 |
|
// Are the Mac and the host address space the same? |
31 |
|
#ifdef __i386__ |
32 |
|
#define REAL_ADDRESSING 0 |
33 |
+ |
#undef WORDS_BIGENDIAN |
34 |
|
#else |
35 |
|
#define REAL_ADDRESSING 1 |
36 |
+ |
#define WORDS_BIGENDIAN 1 |
37 |
|
#endif |
38 |
|
|
39 |
< |
// Are we using a 68k emulator or the real thing? |
39 |
> |
// Using 68k emulator |
40 |
|
#define EMULATED_68K 1 |
41 |
|
|
42 |
< |
// Is the Mac ROM write protected? |
42 |
> |
// Mac ROM is write protected |
43 |
|
#define ROM_IS_WRITE_PROTECTED 1 |
44 |
|
|
45 |
|
// ExtFS is supported |
46 |
|
#define SUPPORTS_EXTFS 1 |
47 |
|
|
48 |
|
// mon is not supported |
49 |
< |
#define ENABLE_MON 0 |
49 |
> |
#undef ENABLE_MON |
50 |
|
|
51 |
|
// Time data type for Time Manager emulation |
52 |
|
typedef bigtime_t tm_time_t; |