ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/sysdeps.h
(Generate patch)

Comparing BasiliskII/src/Unix/sysdeps.h (file contents):
Revision 1.12 by cebix, 2000-07-22T18:12:34Z vs.
Revision 1.14 by cebix, 2000-10-09T17:05:17Z

# Line 69 | Line 69
69  
70   /* Mac ROM is not write protected */
71   #define ROM_IS_WRITE_PROTECTED 0
72 + #define USE_SCRATCHMEM_SUBTERFUGE 1
73  
74   #else
75  
76   /* Mac and host address space are distinct */
77 + #ifndef REAL_ADDRESSING
78   #define REAL_ADDRESSING 0
79 + #endif
80  
81   /* Using 68k emulator */
82   #define EMULATED_68K 1
83  
84 < /* Mac ROM is write protected */
85 < #define ROM_IS_WRITE_PROTECTED 1
84 > /* The m68k emulator uses a prefetch buffer ? */
85 > #define USE_PREFETCH_BUFFER 0
86 >
87 > /* Mac ROM is write protected when banked memory is used */
88 > #if REAL_ADDRESSING || DIRECT_ADDRESSING
89 > # define ROM_IS_WRITE_PROTECTED 0
90 > # define USE_SCRATCHMEM_SUBTERFUGE 1
91 > #else
92 > # define ROM_IS_WRITE_PROTECTED 1
93 > #endif
94 >
95 > #endif
96  
97 + /* Direct Addressing requires Video on SEGV signals */
98 + #if DIRECT_ADDRESSING && !ENABLE_VOSF
99 + # undef  ENABLE_VOSF
100 + # define ENABLE_VOSF 1
101   #endif
102  
103   /* ExtFS is supported */
# Line 121 | Line 138 | typedef long long int64;
138   #else
139   #error "No 8 byte type, you lose."
140   #endif
141 + #if SIZEOF_VOID_P == 4
142 + typedef uint32 uintptr;
143 + typedef int32 intptr;
144 + #elif SIZEOF_VOID_P == 8
145 + typedef uint64 uintptr;
146 + typedef int64 intptr;
147 + #else
148 + #error "Unsupported size of pointer"
149 + #endif
150  
151   /* Time data type for Time Manager emulation */
152   #ifdef HAVE_CLOCK_GETTIME

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines