ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/rsrc_patches.cpp
Revision: 1.20
Committed: 2006-05-06T09:23:28Z (18 years ago) by gbeauche
Branch: MAIN
Changes since 1.19: +18 -7 lines
Log Message:
Add 'nsrd' 1 and 'gpch' 650 patches for MacOS 7.5.3 Revision 2.2

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * rsrc_patches.cpp - Resource patches
3     *
4 gbeauche 1.15 * SheepShaver (C) 1997-2005 Christian Bauer and Marc Hellwig
5 cebix 1.1 *
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     #include <stdio.h>
22     #include <stdlib.h>
23     #include <string.h>
24    
25     #include "sysdeps.h"
26     #include "rsrc_patches.h"
27     #include "cpu_emulation.h"
28     #include "emul_op.h"
29     #include "xlowmem.h"
30     #include "macos_util.h"
31     #include "rom_patches.h"
32     #include "main.h"
33     #include "audio.h"
34 gbeauche 1.8 #include "audio_defs.h"
35 gbeauche 1.7 #include "thunks.h"
36 cebix 1.1
37     #define DEBUG 0
38     #include "debug.h"
39    
40    
41     // Sound input driver
42     static const uint8 sound_input_driver[] = { // .AppleSoundInput driver header
43     // Driver header
44     0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
45     0x00, 0x24, // Open() offset
46     0x00, 0x28, // Prime() offset
47     0x00, 0x2c, // Control() offset
48     0x00, 0x38, // Status() offset
49     0x00, 0x5e, // Close() offset
50     0x10, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x65, 0x53, 0x6f, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x00, // ".AppleSoundInput"
51    
52     // Open()
53     M68K_EMUL_OP_SOUNDIN_OPEN >> 8, M68K_EMUL_OP_SOUNDIN_OPEN & 0xff,
54     0x4e, 0x75, // rts
55    
56     // Prime()
57     M68K_EMUL_OP_SOUNDIN_PRIME >> 8, M68K_EMUL_OP_SOUNDIN_PRIME & 0xff,
58     0x60, 0x0e, // bra IOReturn
59    
60     // Control()
61     M68K_EMUL_OP_SOUNDIN_CONTROL >> 8, M68K_EMUL_OP_SOUNDIN_CONTROL & 0xff,
62     0x0c, 0x68, 0x00, 0x01, 0x00, 0x1a, // cmp.w #1,$1a(a0)
63     0x66, 0x04, // bne IOReturn
64     0x4e, 0x75, // rts
65    
66     // Status()
67     M68K_EMUL_OP_SOUNDIN_STATUS >> 8, M68K_EMUL_OP_SOUNDIN_STATUS & 0xff,
68    
69     // IOReturn
70     0x32, 0x28, 0x00, 0x06, // move.w 6(a0),d1
71     0x08, 0x01, 0x00, 0x09, // btst #9,d1
72     0x67, 0x0c, // beq 1
73     0x4a, 0x40, // tst.w d0
74     0x6f, 0x02, // ble 2
75     0x42, 0x40, // clr.w d0
76     0x31, 0x40, 0x00, 0x10, //2 move.w d0,$10(a0)
77     0x4e, 0x75, // rts
78     0x4a, 0x40, //1 tst.w d0
79     0x6f, 0x04, // ble 3
80     0x42, 0x40, // clr.w d0
81     0x4e, 0x75, // rts
82     0x2f, 0x38, 0x08, 0xfc, //3 move.l $8fc,-(sp)
83     0x4e, 0x75, // rts
84    
85     // Close()
86     M68K_EMUL_OP_SOUNDIN_CLOSE >> 8, M68K_EMUL_OP_SOUNDIN_CLOSE & 0xff,
87     0x4e, 0x75, // rts
88     };
89    
90    
91     /*
92     * Search resource for byte string, return offset (or 0)
93     */
94    
95     static uint32 find_rsrc_data(const uint8 *rsrc, uint32 max, const uint8 *search, uint32 search_len, uint32 ofs = 0)
96     {
97     while (ofs < max - search_len) {
98     if (!memcmp(rsrc + ofs, search, search_len))
99     return ofs;
100     ofs++;
101     }
102     return 0;
103     }
104    
105    
106     /*
107     * Resource patches via vCheckLoad
108     */
109    
110 gbeauche 1.4 // 680x0 code pattern matching helper
111     #define PM(N, V) (p[N] == htons(V))
112    
113 cebix 1.1 void CheckLoad(uint32 type, int16 id, uint16 *p, uint32 size)
114     {
115     uint16 *p16;
116     uint32 base;
117     D(bug("vCheckLoad %c%c%c%c (%08x) ID %d, data %p, size %d\n", type >> 24, (type >> 16) & 0xff, (type >> 8) & 0xff, type & 0xff, type, id, p, size));
118    
119     // Don't modify resources in ROM
120 gbeauche 1.12 if ((uintptr)p >= (uintptr)ROMBaseHost && (uintptr)p <= (uintptr)(ROMBaseHost + ROM_SIZE))
121 cebix 1.1 return;
122    
123     if (type == FOURCC('b','o','o','t') && id == 3) {
124     D(bug("boot 3 found\n"));
125     size >>= 1;
126     while (size--) {
127 gbeauche 1.19 if (PM(0,0x51c9) && PM(2,0x2e49)) {
128     // Set boot stack pointer (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1, 8.5, 8.6, 9.0)
129     p[2] = htons(M68K_EMUL_OP_FIX_BOOTSTACK);
130 cebix 1.1 D(bug(" patch 1 applied\n"));
131 gbeauche 1.4 } else if (PM(0,0x4267) && PM(1,0x3f01) && PM(2,0x3f2a) && PM(3,0x0006) && PM(4,0x6100)) {
132 cebix 1.1 // Check when ntrb 17 is installed (for native Resource Manager patch) (7.5.3, 7.5.5)
133 gbeauche 1.4 p[7] = htons(M68K_EMUL_OP_NTRB_17_PATCH3);
134 cebix 1.1 D(bug(" patch 2 applied\n"));
135 gbeauche 1.4 } else if (PM(0,0x3f2a) && PM(1,0x0006) && PM(2,0x3f2a) && PM(3,0x0002) && PM(4,0x6100)) {
136 cebix 1.1 // Check when ntrb 17 is installed (for native Resource Manager patch) (7.6, 7.6.1, 8.0, 8.1)
137 gbeauche 1.4 p[7] = htons(M68K_EMUL_OP_NTRB_17_PATCH);
138 cebix 1.1 D(bug(" patch 3 applied\n"));
139 gbeauche 1.11 } else if (PM(0,0x3f2a) && PM(1,0x0006) && PM(2,0x3f2a) && PM(3,0x0002) && PM(4,0x61ff) && PM(8,0x245f)) {
140 cebix 1.1 // Check when ntrb 17 is installed (for native Resource Manager patch) (8.5, 8.6)
141 gbeauche 1.4 p[8] = htons(M68K_EMUL_OP_NTRB_17_PATCH);
142 cebix 1.1 D(bug(" patch 4 applied\n"));
143 gbeauche 1.11 } else if (PM(0,0x3f2a) && PM(1,0x0006) && PM(2,0x3f2a) && PM(3,0x0002) && PM(4,0x61ff) && PM(7,0x301f)) {
144     // Check when ntrb 17 is installed (for native Resource Manager patch) (9.0)
145     p[7] = htons(M68K_EMUL_OP_NTRB_17_PATCH4);
146     p[8] = htons(ntohs(p[8]) & 0xf0ff); // bra
147 gbeauche 1.19 D(bug(" patch 5 applied\n"));
148 gbeauche 1.4 } else if (PM(0,0x0c39) && PM(1,0x0001) && PM(2,0xf800) && PM(3,0x0008) && PM(4,0x6f00)) {
149 gbeauche 1.19 // Don't read from 0xf8000008 (8.5 with Zanzibar ROM, 8.6, 9.0)
150 gbeauche 1.4 p[0] = htons(M68K_NOP);
151     p[1] = htons(M68K_NOP);
152     p[2] = htons(M68K_NOP);
153     p[3] = htons(M68K_NOP);
154     p[4] = htons(0x6000); // bra
155 gbeauche 1.19 D(bug(" patch 6 applied\n"));
156 gbeauche 1.4 } else if (PM(0,0x2f3c) && PM(1,0x6b72) && PM(2,0x6e6c) && PM(3,0x4267) && PM(4,0xa9a0) && PM(5,0x265f) && PM(6,0x200b) && PM(7,0x6700)) {
157 gbeauche 1.19 // Don't replace nanokernel ("krnl" resource) (8.6, 9.0)
158 gbeauche 1.4 p[0] = htons(M68K_NOP);
159     p[1] = htons(M68K_NOP);
160     p[2] = htons(M68K_NOP);
161     p[3] = htons(M68K_NOP);
162     p[4] = htons(M68K_NOP);
163     p[7] = htons(0x6000); // bra
164 gbeauche 1.19 D(bug(" patch 7 applied\n"));
165 gbeauche 1.4 } else if (PM(0,0xa8fe) && PM(1,0x3038) && PM(2,0x017a) && PM(3,0x0c40) && PM(4,0x8805) && PM(5,0x6710)) {
166 cebix 1.1 // No SCSI (calls via 0x205c jump vector which is not initialized in NewWorld ROM 1.6) (8.6)
167     if (ROMType == ROMTYPE_NEWWORLD) {
168 gbeauche 1.4 p[5] = htons(0x6010); // bra
169 gbeauche 1.19 D(bug(" patch 8 applied\n"));
170 cebix 1.1 }
171 gbeauche 1.16 } else if (PM(0,0x2f3c) && PM(1,0x7665) && PM(2,0x7273) && PM(3,0x3f3c) && PM(4,0x0001) && PM(10,0x2041) && PM(11,0x2248) && PM(12,0x2050) && PM(20,0x7066) && PM(21,0xa9c9)) {
172     // Check when vers 1 is installed (for safe abort if MacOS < 8.1 is used with a NewWorld ROM)
173     p[10] = htons(M68K_EMUL_OP_CHECK_SYSV);
174     p[11] = htons(0x4a81); // tst.l d1
175     p[12] = htons(0x670e); // beq.s <SysError #dsOldSystem>
176     D(bug(" patch 9 applied\n"));
177 cebix 1.1 }
178     p++;
179     }
180    
181     } else if (type == FOURCC('g','n','l','d') && id == 0) {
182     D(bug("gnld 0 found\n"));
183    
184     // Patch native Resource Manager after ntrbs are installed (7.5.2)
185     static const uint8 dat[] = {0x4e, 0xba, 0x00, 0x9e, 0x3e, 0x00, 0x50, 0x4f, 0x67, 0x04};
186     base = find_rsrc_data((uint8 *)p, size, dat, sizeof(dat));
187     if (base) {
188 gbeauche 1.4 p16 = (uint16 *)((uintptr)p + base + 6);
189 cebix 1.1 *p16 = htons(M68K_EMUL_OP_NTRB_17_PATCH2);
190     D(bug(" patch 1 applied\n"));
191     }
192    
193 gbeauche 1.11 } else if (type == FOURCC('p','t','c','h') && id == 156) {
194     D(bug("ptch 156 found\n"));
195     size >>= 1;
196     while (size--) {
197     if (PM(0,0x4e56) && PM(1,0xfffa) && PM(2,0x48e7) && PM(3,0x1f18) && PM(4,0x7800) && PM(5,0x267c) && PM(6,0x6900) && PM(7,0x0000)) {
198     // Don't call FE0A opcode (9.0)
199     p[0] = htons(0x7000); // moveq #0,d0
200     p[1] = htons(M68K_RTS);
201     D(bug(" patch 1 applied\n"));
202     break;
203     }
204     p++;
205     }
206    
207 cebix 1.1 } else if (type == FOURCC('p','t','c','h') && id == 420) {
208     D(bug("ptch 420 found\n"));
209     size >>= 1;
210     while (size--) {
211 gbeauche 1.4 if (PM(0,0xa030) && PM(1,0x5240) && PM(2,0x303c) && PM(3,0x0100) && PM(4,0xc06e) && PM(5,0xfef6)) {
212 cebix 1.1 // Disable VM (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1)
213 gbeauche 1.4 p[1] = htons(M68K_NOP);
214     p[2] = htons(M68K_NOP);
215     p[3] = htons(M68K_NOP);
216     p[4] = htons(M68K_NOP);
217     p[5] = htons(M68K_NOP);
218     p[6] = htons(M68K_NOP);
219     p[7] = htons(M68K_NOP);
220     p[8] = htons(M68K_NOP);
221     p[9] = htons(M68K_NOP);
222     p[10] = htons(M68K_NOP);
223     p[11] = htons(M68K_NOP);
224 cebix 1.1 D(bug(" patch 1 applied\n"));
225     break;
226 gbeauche 1.4 } else if (PM(0,0xa030) && PM(1,0x5240) && PM(2,0x7000) && PM(3,0x302e) && PM(4,0xfef6) && PM(5,0x323c) && PM(6,0x0100)) {
227 cebix 1.1 // Disable VM (8.0, 8.1)
228 gbeauche 1.4 p[8] = htons(M68K_NOP);
229     p[15] = htons(M68K_NOP);
230 cebix 1.1 D(bug(" patch 2 applied\n"));
231     break;
232 gbeauche 1.4 } else if (PM(0,0xa030) && PM(1,0x5240) && PM(2,0x7000) && PM(3,0x302e) && PM(4,0xfecc) && PM(5,0x323c) && PM(6,0x0100)) {
233 gbeauche 1.19 // Disable VM (8.5, 8.6, 9.0)
234 gbeauche 1.4 p[8] = htons(M68K_NOP);
235     p[15] = htons(M68K_NOP);
236 cebix 1.1 D(bug(" patch 3 applied\n"));
237     break;
238     }
239     p++;
240     }
241    
242     } else if (type == FOURCC('g','p','c','h') && id == 16) {
243     D(bug("gpch 16 found\n"));
244     size >>= 1;
245     while (size--) {
246 gbeauche 1.4 if (PM(0,0x6700) && PM(13,0x7013) && PM(14,0xfe0a)) {
247 cebix 1.1 // Don't call FE0A in Shutdown Manager (7.6.1, 8.0, 8.1, 8.5)
248 gbeauche 1.4 p[0] = htons(0x6000);
249 cebix 1.1 D(bug(" patch 1 applied\n"));
250     break;
251     }
252     p++;
253     }
254    
255     } else if (type == FOURCC('g','p','c','h') && id == 650) {
256     D(bug("gpch 650 found\n"));
257     size >>= 1;
258     while (size--) {
259 gbeauche 1.4 if (PM(0,0x6600) && PM(1,0x001a) && PM(2,0x2278) && PM(3,0x0134)) {
260 cebix 1.1 // We don't have SonyVars (7.5.2)
261 gbeauche 1.4 p[0] = htons(0x6000);
262 cebix 1.1 D(bug(" patch 1 applied\n"));
263 gbeauche 1.4 } else if (PM(0,0x6618) && PM(1,0x2278) && PM(2,0x0134)) {
264 cebix 1.1 // We don't have SonyVars (7.5.3)
265 gbeauche 1.4 p[-6] = htons(M68K_NOP);
266     p[-3] = htons(M68K_NOP);
267     p[0] = htons(0x6018);
268 cebix 1.1 D(bug(" patch 2 applied\n"));
269 gbeauche 1.20 } else if (PM(0,0x6660) && PM(1,0x2278) && PM(2,0x0134)) {
270     // We don't have SonyVars (7.5.3 Revision 2.2)
271     p[-6] = htons(M68K_NOP);
272     p[-3] = htons(M68K_NOP);
273     p[0] = htons(0x6060);
274     D(bug(" patch 3 applied\n"));
275 gbeauche 1.4 } else if (PM(0,0x666e) && PM(1,0x2278) && PM(2,0x0134)) {
276 cebix 1.1 // We don't have SonyVars (7.5.5)
277 gbeauche 1.4 p[-6] = htons(M68K_NOP);
278     p[-3] = htons(M68K_NOP);
279     p[0] = htons(0x606e);
280 gbeauche 1.20 D(bug(" patch 4 applied\n"));
281 gbeauche 1.4 } else if (PM(0,0x6400) && PM(1,0x011c) && PM(2,0x2278) && PM(3,0x0134)) {
282 gbeauche 1.19 // We don't have SonyVars (7.6.1, 8.0, 8.1, 8.5, 8.6, 9.0)
283 gbeauche 1.4 p[0] = htons(0x6000);
284 gbeauche 1.20 D(bug(" patch 5 applied\n"));
285 gbeauche 1.4 } else if (PM(0,0x6400) && PM(1,0x00e6) && PM(2,0x2278) && PM(3,0x0134)) {
286 cebix 1.1 // We don't have SonyVars (7.6)
287 gbeauche 1.4 p[0] = htons(0x6000);
288 gbeauche 1.20 D(bug(" patch 6 applied\n"));
289 cebix 1.1 }
290     p++;
291     }
292    
293     } else if (type == FOURCC('g','p','c','h') && id == 655) {
294     D(bug("gpch 655 found\n"));
295     size >>= 1;
296     while (size--) {
297 gbeauche 1.4 if (PM(0,0x83a8) && PM(1,0x0024) && PM(2,0x4e71)) {
298 cebix 1.1 // Don't write to GC interrupt mask (7.6, 7.6.1, 8.0, 8.1 with Zanzibar ROM)
299 gbeauche 1.4 p[0] = htons(M68K_NOP);
300     p[1] = htons(M68K_NOP);
301 cebix 1.1 D(bug(" patch 1 applied\n"));
302 gbeauche 1.4 } else if (PM(0,0x207c) && PM(1,0xf300) && PM(2,0x0034)) {
303 cebix 1.1 // Don't read PowerMac ID (7.6, 7.6.1, 8.0, 8.1 with Zanzibar ROM)
304 gbeauche 1.4 p[0] = htons(0x303c); // move.w #id,d0
305     p[1] = htons(0x3020);
306     p[2] = htons(M68K_RTS);
307 cebix 1.1 D(bug(" patch 2 applied\n"));
308 gbeauche 1.4 } else if (PM(0,0x13fc) && PM(1,0x0081) && PM(2,0xf130) && PM(3,0xa030)) {
309 cebix 1.1 // Don't write to hardware (7.6, 7.6.1, 8.0, 8.1 with Zanzibar ROM)
310 gbeauche 1.4 p[0] = htons(M68K_NOP);
311     p[1] = htons(M68K_NOP);
312     p[2] = htons(M68K_NOP);
313     p[3] = htons(M68K_NOP);
314 cebix 1.1 D(bug(" patch 3 applied\n"));
315 gbeauche 1.4 } else if (PM(0,0x4e56) && PM(1,0x0000) && PM(2,0x227c) && PM(3,0xf800) && PM(4,0x0000)) {
316 cebix 1.1 // OpenFirmare? (7.6.1, 8.0, 8.1 with Zanzibar ROM)
317 gbeauche 1.4 p[0] = htons(M68K_RTS);
318 cebix 1.1 D(bug(" patch 4 applied\n"));
319 gbeauche 1.4 } else if (PM(0,0x4e56) && PM(1,0xfffc) && PM(2,0x48e7) && PM(3,0x0300) && PM(4,0x598f) && PM(5,0x2eb8) && PM(6,0x01dc)) {
320 cebix 1.1 // Don't write to SCC (7.6.1, 8.0, 8.1 with Zanzibar ROM)
321 gbeauche 1.4 p[0] = htons(M68K_RTS);
322 cebix 1.1 D(bug(" patch 5 applied\n"));
323 gbeauche 1.4 } else if (PM(0,0x4e56) && PM(1,0x0000) && PM(2,0x227c) && PM(3,0xf300) && PM(4,0x0034)) {
324 cebix 1.1 // Don't write to GC (7.6.1, 8.0, 8.1 with Zanzibar ROM)
325 gbeauche 1.4 p[0] = htons(M68K_RTS);
326 cebix 1.1 D(bug(" patch 6 applied\n"));
327 gbeauche 1.4 } else if (PM(0,0x40e7) && PM(1,0x007c) && PM(2,0x0700) && PM(3,0x48e7) && PM(4,0x00c0) && PM(5,0x2078) && PM(6,0x0dd8) && PM(7,0xd1e8) && PM(8,0x0044) && PM(9,0x8005) && PM(11,0x93c8) && PM(12,0x2149) && PM(13,0x0024)) {
328 cebix 1.1 // Don't replace NVRAM routines (7.6, 7.6.1, 8.0, 8.1 with Zanzibar ROM)
329 gbeauche 1.4 p[0] = htons(M68K_RTS);
330 cebix 1.1 D(bug(" patch 7 applied\n"));
331 gbeauche 1.4 } else if (PM(0,0x207c) && PM(1,0x50f1) && PM(2,0xa101) && (PM(3,0x08d0) || PM(3,0x0890))) {
332 cebix 1.1 // Don't write to 0x50f1a101 (8.1 with Zanzibar ROM)
333 gbeauche 1.4 p[3] = htons(M68K_NOP);
334     p[4] = htons(M68K_NOP);
335 cebix 1.1 D(bug(" patch 8 applied\n"));
336     }
337     p++;
338     }
339    
340     } else if (type == FOURCC('g','p','c','h') && id == 750) {
341     D(bug("gpch 750 found\n"));
342     size >>= 1;
343     while (size--) {
344 gbeauche 1.4 if (PM(0,0xf301) && PM(1,0x9100) && PM(2,0x0c11) && PM(3,0x0044)) {
345 cebix 1.1 // Don't read from 0xf3019100 (MACE ENET) (7.6, 7.6.1, 8.0, 8.1)
346 gbeauche 1.4 p[2] = htons(M68K_NOP);
347     p[3] = htons(M68K_NOP);
348     p[4] = htons(0x6026);
349 cebix 1.1 D(bug(" patch 1 applied\n"));
350 gbeauche 1.4 } else if (PM(0,0x41e8) && PM(1,0x0374) && PM(2,0xfc1e)) {
351 cebix 1.1 // Don't call FC1E opcode (7.6, 7.6.1, 8.0, 8.1, 8.5, 8.6)
352 gbeauche 1.4 p[2] = htons(M68K_NOP);
353 cebix 1.1 D(bug(" patch 2 applied\n"));
354 gbeauche 1.4 } else if (PM(0,0x700a) && PM(1,0xfe0a)) {
355 gbeauche 1.19 // Don't call FE0A opcode (7.6, 7.6.1, 8.0, 8.1, 8.5, 8.6, 9.0)
356     p[1] = htons(0x2008); // move.l a0,d0
357 cebix 1.1 D(bug(" patch 3 applied\n"));
358     }
359     p++;
360     }
361    
362     } else if (type == FOURCC('g','p','c','h') && id == 999) {
363     D(bug("gpch 999 found\n"));
364     size >>= 1;
365     while (size--) {
366 gbeauche 1.4 if (PM(0,0xf301) && PM(1,0x9100) && PM(2,0x0c11) && PM(3,0x0044)) {
367 cebix 1.1 // Don't read from 0xf3019100 (MACE ENET) (8.5, 8.6)
368 gbeauche 1.4 p[2] = htons(M68K_NOP);
369     p[3] = htons(M68K_NOP);
370     p[4] = htons(0x6026);
371 cebix 1.1 D(bug(" patch 1 applied\n"));
372     }
373     p++;
374     }
375    
376     } else if (type == FOURCC('g','p','c','h') && id == 3000) {
377     D(bug("gpch 3000 found\n"));
378     size >>= 1;
379     while (size--) {
380 gbeauche 1.4 if (PM(0,0xf301) && PM(1,0x9100) && PM(2,0x0c11) && PM(3,0x0044)) {
381 cebix 1.1 // Don't read from 0xf3019100 (MACE ENET) (8.1 with NewWorld ROM)
382 gbeauche 1.4 p[2] = htons(M68K_NOP);
383     p[3] = htons(M68K_NOP);
384     p[4] = htons(0x6026);
385 cebix 1.1 D(bug(" patch 1 applied\n"));
386     }
387     p++;
388     }
389    
390     } else if (type == FOURCC('l','t','l','k') && id == 0) {
391     D(bug("ltlk 0 found\n"));
392     #if 1
393     size >>= 1;
394     while (size--) {
395 gbeauche 1.4 if (PM(0,0xc2fc) && PM(1,0x0fa0) && PM(2,0x82c5)) {
396 cebix 1.1 // Prevent division by 0 in speed test (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
397 gbeauche 1.4 p[2] = htons(0x7200);
398 cebix 1.1 WriteMacInt32(0x1d8, 0x2c00);
399     WriteMacInt32(0x1dc, 0x2c00);
400     D(bug(" patch 1 applied\n"));
401 gbeauche 1.4 } else if (PM(0,0x1418) && PM(1,0x84c1)) {
402 cebix 1.1 // Prevent division by 0 (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
403 gbeauche 1.4 p[1] = htons(0x7400);
404 cebix 1.1 D(bug(" patch 2 applied\n"));
405 gbeauche 1.4 } else if (PM(0,0x2678) && PM(1,0x01dc) && PM(2,0x3018) && PM(3,0x6708) && PM(4,0x1680) && PM(5,0xe058) && PM(6,0x1680)) {
406 cebix 1.1 // Don't write to SCC (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
407 gbeauche 1.4 p[4] = htons(M68K_NOP);
408     p[6] = htons(M68K_NOP);
409 cebix 1.1 D(bug(" patch 3 applied\n"));
410 gbeauche 1.4 } else if (PM(0,0x2278) && PM(1,0x01dc) && PM(2,0x12bc) && PM(3,0x0006) && PM(4,0x4e71) && PM(5,0x1292)) {
411 cebix 1.1 // Don't write to SCC (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
412 gbeauche 1.4 p[2] = htons(M68K_NOP);
413     p[3] = htons(M68K_NOP);
414     p[5] = htons(M68K_NOP);
415 cebix 1.1 D(bug(" patch 4 applied\n"));
416 gbeauche 1.4 } else if (PM(0,0x2278) && PM(1,0x01dc) && PM(2,0x12bc) && PM(3,0x0003) && PM(4,0x4e71) && PM(5,0x1281)) {
417 cebix 1.1 // Don't write to SCC (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
418 gbeauche 1.4 p[2] = htons(M68K_NOP);
419     p[3] = htons(M68K_NOP);
420     p[5] = htons(M68K_NOP);
421 cebix 1.1 D(bug(" patch 5 applied\n"));
422 gbeauche 1.4 } else if (PM(0,0x0811) && PM(1,0x0000) && PM(2,0x51c8) && PM(3,0xfffa)) {
423 cebix 1.1 // Don't test SCC (7.5.2, 7.5.3, 7.5.5, 7.6, 7.6.1, 8.0, 8.1)
424 gbeauche 1.4 p[0] = htons(M68K_NOP);
425     p[1] = htons(M68K_NOP);
426 cebix 1.1 D(bug(" patch 6 applied\n"));
427 gbeauche 1.4 } else if (PM(0,0x4a2a) && PM(1,0x063e) && PM(2,0x66fa)) {
428 cebix 1.1 // Don't wait for SCC (7.5.2, 7.5.3, 7.5.5)
429 gbeauche 1.4 p[2] = htons(M68K_NOP);
430 cebix 1.1 D(bug(" patch 7 applied\n"));
431 gbeauche 1.4 } else if (PM(0,0x4a2a) && PM(1,0x03a6) && PM(2,0x66fa)) {
432 cebix 1.1 // Don't wait for SCC (7.6, 7.6.1, 8.0, 8.1)
433 gbeauche 1.4 p[2] = htons(M68K_NOP);
434 cebix 1.1 D(bug(" patch 8 applied\n"));
435     }
436     p++;
437     }
438     #else
439     // Disable LocalTalk
440 gbeauche 1.4 p[0] = htons(M68K_JMP_A0);
441     p[1] = htons(0x7000); // moveq #0,d0
442     p[2] = htons(M68K_RTS);
443 cebix 1.1 D(bug(" patch 1 applied\n"));
444     #endif
445    
446     } else if (type == FOURCC('n','s','r','d') && id == 1) {
447     D(bug("nsrd 1 found\n"));
448 gbeauche 1.20 if (p[(0x378 + 0x460) >> 1] == htons(0x7c08) && p[(0x37a + 0x460) >> 1] == htons(0x02a6)) {
449     // Don't overwrite our serial drivers (7.5.3 Revision 2.2)
450     p[(0x378 + 0x460) >> 1] = htons(0x4e80); // blr
451     p[(0x37a + 0x460) >> 1] = htons(0x0020);
452     D(bug(" patch 1 applied\n"));
453     } else if (p[(0x378 + 0x570) >> 1] == htons(0x7c08) && p[(0x37a + 0x570) >> 1] == htons(0x02a6)) {
454 cebix 1.1 // Don't overwrite our serial drivers (8.0, 8.1)
455 gbeauche 1.6 p[(0x378 + 0x570) >> 1] = htons(0x4e80); // blr
456     p[(0x37a + 0x570) >> 1] = htons(0x0020);
457 gbeauche 1.20 D(bug(" patch 2 applied\n"));
458 gbeauche 1.6 } else if (p[(0x378 + 0x6c0) >> 1] == htons(0x7c08) && p[(0x37a + 0x6c0) >> 1] == htons(0x02a6)) {
459 cebix 1.1 // Don't overwrite our serial drivers (8.5, 8.6)
460 gbeauche 1.6 p[(0x378 + 0x6c0) >> 1] = htons(0x4e80); // blr
461     p[(0x37a + 0x6c0) >> 1] = htons(0x0020);
462 gbeauche 1.20 D(bug(" patch 3 applied\n"));
463 gbeauche 1.13 } else if (p[(0x374 + 0x510) >> 1] == htons(0x7c08) && p[(0x376 + 0x510) >> 1] == htons(0x02a6)) {
464     // Don't overwrite our serial drivers (9.0)
465     p[(0x374 + 0x510) >> 1] = htons(0x4e80); // blr
466     p[(0x376 + 0x510) >> 1] = htons(0x0020);
467 gbeauche 1.20 D(bug(" patch 4 applied\n"));
468 cebix 1.1 }
469    
470     } else if (type == FOURCC('c','i','t','t') && id == 45) {
471     D(bug("citt 45 found\n"));
472     size >>= 1;
473     while (size--) {
474 gbeauche 1.4 if (PM(0,0x203c) && PM(1,0x0100) && PM(2,0x0000) && PM(3,0xc0ae) && PM(4,0xfffc)) {
475 gbeauche 1.19 // Don't replace SCSI Manager (8.1, 8.5, 8.6, 9.0)
476 gbeauche 1.6 p[5] = htons((ntohs(p[5]) & 0xff) | 0x6000); // beq
477 cebix 1.1 D(bug(" patch 1 applied\n"));
478     break;
479     }
480     p++;
481     }
482    
483     } else if (type == FOURCC('t','h','n','g')) {
484     // Collect info about used audio sifters
485 gbeauche 1.12 uint32 thing = Host2MacAddr((uint8 *)p);
486 gbeauche 1.8 uint32 c_type = ReadMacInt32(thing);
487     uint32 sub_type = ReadMacInt32(thing + 4);
488 cebix 1.1 if (c_type == FOURCC('s','d','e','v') && sub_type == FOURCC('s','i','n','g')) {
489 gbeauche 1.8 WriteMacInt32(thing + 4, FOURCC('a','w','g','c'));
490 cebix 1.1 D(bug("thng %d, type %c%c%c%c (%08x), sub type %c%c%c%c (%08x), data %p\n", id, c_type >> 24, (c_type >> 16) & 0xff, (c_type >> 8) & 0xff, c_type & 0xff, c_type, sub_type >> 24, (sub_type >> 16) & 0xff, (sub_type >> 8) & 0xff, sub_type & 0xff, sub_type, p));
491 gbeauche 1.8 AddSifter(ReadMacInt32(thing + componentResType), ReadMacInt16(thing + componentResID));
492     if (ReadMacInt32(thing + componentPFCount))
493     AddSifter(ReadMacInt32(thing + componentPFResType), ReadMacInt16(thing + componentPFResID));
494 cebix 1.1 }
495    
496     } else if (type == FOURCC('s','i','f','t') || type == FOURCC('n','i','f','t')) {
497     // Patch audio sifters
498     if (FindSifter(type, id)) {
499     D(bug("sifter found\n"));
500 gbeauche 1.4 p[0] = htons(0x4e56); p[1] = htons(0x0000); // link a6,#0
501     p[2] = htons(0x48e7); p[3] = htons(0x8018); // movem.l d0/a3-a4,-(a7)
502     p[4] = htons(0x266e); p[5] = htons(0x000c); // movea.l $c(a6),a3
503     p[6] = htons(0x286e); p[7] = htons(0x0008); // movea.l $8(a6),a4
504     p[8] = htons(M68K_EMUL_OP_AUDIO_DISPATCH);
505     p[9] = htons(0x2d40); p[10] = htons(0x0010); // move.l d0,$10(a6)
506     p[11] = htons(0x4cdf); p[12] = htons(0x1801); // movem.l (a7)+,d0/a3-a4
507     p[13] = htons(0x4e5e); // unlk a6
508     p[14] = htons(0x4e74); p[15] = htons(0x0008); // rtd #8
509 cebix 1.1 D(bug(" patch applied\n"));
510     }
511    
512     } else if (type == FOURCC('D','R','V','R') && (id == -16501 || id == -16500)) {
513     D(bug("DRVR -16501/-16500 found\n"));
514     // Install sound input driver
515     memcpy(p, sound_input_driver, sizeof(sound_input_driver));
516     D(bug(" patch 1 applied\n"));
517    
518     } else if (type == FOURCC('I','N','I','T') && id == 1 && size == (2416 >> 1)) {
519     D(bug("INIT 1 (size 2416) found\n"));
520     size >>= 1;
521     while (size--) {
522 gbeauche 1.4 if (PM(0,0x247c) && PM(1,0xf301) && PM(2,0x9000)) {
523 cebix 1.1 // Prevent "MacOS Licensing Extension" from accessing hardware (7.6)
524 gbeauche 1.4 p[22] = htons(0x6028);
525 cebix 1.1 D(bug(" patch 1 applied\n"));
526     break;
527     }
528     p++;
529     }
530 gbeauche 1.3
531     } else if (type == FOURCC('s','c','o','d') && id == -16465) {
532     D(bug("scod -16465 found\n"));
533    
534 gbeauche 1.19 // Don't crash in Process Manager on reset/shutdown (8.6, 9.0)
535 gbeauche 1.3 static const uint8 dat[] = {0x4e, 0x56, 0x00, 0x00, 0x48, 0xe7, 0x03, 0x18, 0x2c, 0x2e, 0x00, 0x10};
536     base = find_rsrc_data((uint8 *)p, size, dat, sizeof(dat));
537     if (base) {
538 gbeauche 1.4 p16 = (uint16 *)((uintptr)p + base);
539     p16[0] = htons(0x7000); // moveq #0,d0
540     p16[1] = htons(M68K_RTS);
541 gbeauche 1.3 D(bug(" patch 1 applied\n"));
542     }
543 gbeauche 1.10
544     } else if (type == FOURCC('N','O','b','j') && id == 100) {
545     D(bug("NObj 100 found\n"));
546    
547     // Don't access VIA registers in MacBench 5.0
548     static const uint8 dat1[] = {0x7c, 0x08, 0x02, 0xa6, 0xbf, 0x01, 0xff, 0xe0, 0x90, 0x01, 0x00, 0x08};
549     base = find_rsrc_data((uint8 *)p, size, dat1, sizeof(dat1));
550     if (base) {
551     p[(base + 0x00) >> 1] = htons(0x3860); // li r3,0
552     p[(base + 0x02) >> 1] = htons(0x0000);
553     p[(base + 0x04) >> 1] = htons(0x4e80); // blr
554     p[(base + 0x06) >> 1] = htons(0x0020);
555     D(bug(" patch 1 applied\n"));
556     }
557     static const uint8 dat2[] = {0x7c, 0x6c, 0x1b, 0x78, 0x7c, 0x8b, 0x23, 0x78, 0x38, 0xc0, 0x3f, 0xfd};
558     base = find_rsrc_data((uint8 *)p, size, dat2, sizeof(dat2));
559     if (base) {
560     p[(base + 0x00) >> 1] = htons(0x3860); // li r3,0
561     p[(base + 0x02) >> 1] = htons(0x0000);
562     p[(base + 0x04) >> 1] = htons(0x4e80); // blr
563     p[(base + 0x06) >> 1] = htons(0x0020);
564     D(bug(" patch 2 applied\n"));
565     }
566 gbeauche 1.14
567     } else if (type == FOURCC('C','O','D','E') && id == 27 && size == 25024) {
568     D(bug("CODE 27 found [Apple Personal Diagnostics]\n"));
569    
570     // Don't access FCBs directly in Apple Personal Diagnostics (MacOS 9)
571     // FIXME: this should not be called in the first place, use UTResolveFCB?
572     static const uint8 dat[] = {0x2d, 0x78, 0x03, 0x4e, 0xff, 0xf8, 0x20, 0x6e, 0xff, 0xf8};
573     base = find_rsrc_data((uint8 *)p, size, dat, sizeof(dat));
574     if (base
575     && ReadMacInt16(0x3f6) == 4 /* FSFCBLen */
576     && p[(base + 0x1a) >> 1] == htons(0x605e)
577     && p[(base + 0x80) >> 1] == htons(0x7000))
578     {
579     p[(base + 0x1a) >> 1] = htons(0x6064);
580     D(bug(" patch1 applied\n"));
581     }
582 cebix 1.1 }
583     }
584    
585    
586     /*
587 gbeauche 1.17 * Resource patches via GetNamedResource() and Get1NamedResource()
588     */
589    
590     void CheckLoad(uint32 type, const char *name, uint8 *p, uint32 size)
591     {
592     uint16 *p16;
593     uint32 base;
594     D(bug("vCheckLoad %c%c%c%c (%08x) name \"%*s\", data %p, size %d\n", type >> 24, (type >> 16) & 0xff, (type >> 8) & 0xff, type & 0xff, type, name[0], &name[1], p, size));
595    
596     // Don't modify resources in ROM
597     if ((uintptr)p >= (uintptr)ROMBaseHost && (uintptr)p <= (uintptr)(ROMBaseHost + ROM_SIZE))
598     return;
599 gbeauche 1.18
600     if (type == FOURCC('D','R','V','R') && strncmp(&name[1], ".AFPTranslator", name[0]) == 0) {
601     D(bug(" DRVR .AFPTranslator found\n"));
602    
603     // Don't access ROM85 as it it was a pointer to a ROM version number (8.0, 8.1)
604     static const uint8 dat[] = {0x3a, 0x2e, 0x00, 0x0a, 0x55, 0x4f, 0x3e, 0xb8, 0x02, 0x8e, 0x30, 0x1f, 0x48, 0xc0, 0x24, 0x40, 0x20, 0x40};
605     base = find_rsrc_data(p, size, dat, sizeof(dat));
606     if (base) {
607     p16 = (uint16 *)(p + base + 4);
608     *p16++ = htons(0x303c); // move.l #ROM85,%d0
609     *p16++ = htons(0x028e);
610     *p16++ = htons(M68K_NOP);
611     *p16++ = htons(M68K_NOP);
612     D(bug(" patch 1 applied\n"));
613     }
614     }
615 gbeauche 1.17 }
616    
617    
618     /*
619 cebix 1.1 * Native Resource Manager patches
620     */
621    
622     #ifdef __BEOS__
623     static
624 gbeauche 1.2 #else
625     extern "C"
626 cebix 1.1 #endif
627 gbeauche 1.5 void check_load_invoc(uint32 type, int16 id, uint32 h)
628 cebix 1.1 {
629 gbeauche 1.5 if (h == 0)
630 cebix 1.1 return;
631 gbeauche 1.5 uint32 p = ReadMacInt32(h);
632     if (p == 0)
633 cebix 1.1 return;
634 gbeauche 1.5 uint32 size = ReadMacInt32(p - 2 * 4) & 0xffffff;
635 cebix 1.1
636 gbeauche 1.12 CheckLoad(type, id, (uint16 *)Mac2HostAddr(p), size);
637 cebix 1.1 }
638    
639     #ifdef __BEOS__
640 gbeauche 1.17 static
641     #else
642     extern "C"
643     #endif
644     void named_check_load_invoc(uint32 type, uint32 name, uint32 h)
645     {
646     if (h == 0)
647     return;
648     uint32 p = ReadMacInt32(h);
649     if (p == 0)
650     return;
651     uint32 size = ReadMacInt32(p - 2 * 4) & 0xffffff;
652    
653     CheckLoad(type, (char *)Mac2HostAddr(name), Mac2HostAddr(p), size);
654     }
655    
656     #ifdef __BEOS__
657 cebix 1.1 static asm void **get_resource(register uint32 type, register int16 id)
658     {
659     // Create stack frame
660     mflr r0
661     stw r0,8(r1)
662     stwu r1,-(56+12)(r1)
663    
664     // Save type/ID
665     stw r3,56(r1)
666     stw r4,56+4(r1)
667    
668     // Call old routine
669     lwz r0,XLM_GET_RESOURCE
670     lwz r2,XLM_RES_LIB_TOC
671     mtctr r0
672     bctrl
673     lwz r2,XLM_TOC // Get TOC
674     stw r3,56+8(r1) // Save handle
675    
676     // Call CheckLoad
677     lwz r3,56(r1)
678     lwz r4,56+4(r1)
679     lwz r5,56+8(r1)
680     bl check_load_invoc
681     lwz r3,56+8(r1) // Restore handle
682    
683     // Return to caller
684     lwz r0,56+12+8(r1)
685     mtlr r0
686     addi r1,r1,56+12
687     blr
688     }
689    
690     static asm void **get_1_resource(register uint32 type, register int16 id)
691     {
692     // Create stack frame
693     mflr r0
694     stw r0,8(r1)
695     stwu r1,-(56+12)(r1)
696    
697     // Save type/ID
698     stw r3,56(r1)
699     stw r4,56+4(r1)
700    
701     // Call old routine
702     lwz r0,XLM_GET_1_RESOURCE
703     lwz r2,XLM_RES_LIB_TOC
704     mtctr r0
705     bctrl
706     lwz r2,XLM_TOC // Get TOC
707     stw r3,56+8(r1) // Save handle
708    
709     // Call CheckLoad
710     lwz r3,56(r1)
711     lwz r4,56+4(r1)
712     lwz r5,56+8(r1)
713     bl check_load_invoc
714     lwz r3,56+8(r1) // Restore handle
715    
716     // Return to caller
717     lwz r0,56+12+8(r1)
718     mtlr r0
719     addi r1,r1,56+12
720     blr
721     }
722    
723     static asm void **get_ind_resource(register uint32 type, register int16 index)
724     {
725     // Create stack frame
726     mflr r0
727     stw r0,8(r1)
728     stwu r1,-(56+12)(r1)
729    
730     // Save type/index
731     stw r3,56(r1)
732     stw r4,56+4(r1)
733    
734     // Call old routine
735     lwz r0,XLM_GET_IND_RESOURCE
736     lwz r2,XLM_RES_LIB_TOC
737     mtctr r0
738     bctrl
739     lwz r2,XLM_TOC // Get TOC
740     stw r3,56+8(r1) // Save handle
741    
742     // Call CheckLoad
743     lwz r3,56(r1)
744     lwz r4,56+4(r1)
745     lwz r5,56+8(r1)
746     bl check_load_invoc
747     lwz r3,56+8(r1) // Restore handle
748    
749     // Return to caller
750     lwz r0,56+12+8(r1)
751     mtlr r0
752     addi r1,r1,56+12
753     blr
754     }
755    
756     static asm void **get_1_ind_resource(register uint32 type, register int16 index)
757     {
758     // Create stack frame
759     mflr r0
760     stw r0,8(r1)
761     stwu r1,-(56+12)(r1)
762    
763     // Save type/index
764     stw r3,56(r1)
765     stw r4,56+4(r1)
766    
767     // Call old routine
768     lwz r0,XLM_GET_1_IND_RESOURCE
769     lwz r2,XLM_RES_LIB_TOC
770     mtctr r0
771     bctrl
772     lwz r2,XLM_TOC // Get TOC
773     stw r3,56+8(r1) // Save handle
774    
775     // Call CheckLoad
776     lwz r3,56(r1)
777     lwz r4,56+4(r1)
778     lwz r5,56+8(r1)
779     bl check_load_invoc
780     lwz r3,56+8(r1) // Restore handle
781    
782     // Return to caller
783     lwz r0,56+12+8(r1)
784     mtlr r0
785     addi r1,r1,56+12
786     blr
787     }
788    
789     static asm void **r_get_resource(register uint32 type, register int16 id)
790     {
791     // Create stack frame
792     mflr r0
793     stw r0,8(r1)
794     stwu r1,-(56+12)(r1)
795    
796     // Save type/ID
797     stw r3,56(r1)
798     stw r4,56+4(r1)
799    
800     // Call old routine
801     lwz r0,XLM_R_GET_RESOURCE
802     lwz r2,XLM_RES_LIB_TOC
803     mtctr r0
804     bctrl
805     lwz r2,XLM_TOC // Get TOC
806     stw r3,56+8(r1) // Save handle
807    
808     // Call CheckLoad
809     lwz r3,56(r1)
810     lwz r4,56+4(r1)
811     lwz r5,56+8(r1)
812     bl check_load_invoc
813     lwz r3,56+8(r1) // Restore handle
814    
815     // Return to caller
816     lwz r0,56+12+8(r1)
817     mtlr r0
818     addi r1,r1,56+12
819     blr
820     }
821 gbeauche 1.17
822     static asm void **get_named_resource(register uint32 type, register uint32 name)
823     {
824     // Create stack frame
825     mflr r0
826     stw r0,8(r1)
827     stwu r1,-(56+12)(r1)
828    
829     // Save type/ID
830     stw r3,56(r1)
831     stw r4,56+4(r1)
832    
833     // Call old routine
834     lwz r0,XLM_GET_NAMED_RESOURCE
835     lwz r2,XLM_RES_LIB_TOC
836     mtctr r0
837     bctrl
838     lwz r2,XLM_TOC // Get TOC
839     stw r3,56+8(r1) // Save handle
840    
841     // Call CheckLoad
842     lwz r3,56(r1)
843     lwz r4,56+4(r1)
844     lwz r5,56+8(r1)
845     bl named_check_load_invoc
846     lwz r3,56+8(r1) // Restore handle
847    
848     // Return to caller
849     lwz r0,56+12+8(r1)
850     mtlr r0
851     addi r1,r1,56+12
852     blr
853     }
854    
855     static asm void **get_1_named_resource(register uint32 type, register uint32 name)
856     {
857     // Create stack frame
858     mflr r0
859     stw r0,8(r1)
860     stwu r1,-(56+12)(r1)
861    
862     // Save type/ID
863     stw r3,56(r1)
864     stw r4,56+4(r1)
865    
866     // Call old routine
867     lwz r0,XLM_GET_1_NAMED_RESOURCE
868     lwz r2,XLM_RES_LIB_TOC
869     mtctr r0
870     bctrl
871     lwz r2,XLM_TOC // Get TOC
872     stw r3,56+8(r1) // Save handle
873    
874     // Call CheckLoad
875     lwz r3,56(r1)
876     lwz r4,56+4(r1)
877     lwz r5,56+8(r1)
878     bl named_check_load_invoc
879     lwz r3,56+8(r1) // Restore handle
880    
881     // Return to caller
882     lwz r0,56+12+8(r1)
883     mtlr r0
884     addi r1,r1,56+12
885     blr
886     }
887 cebix 1.1 #else
888     // Routines in asm_linux.S
889     extern "C" void get_resource(void);
890     extern "C" void get_1_resource(void);
891     extern "C" void get_ind_resource(void);
892     extern "C" void get_1_ind_resource(void);
893     extern "C" void r_get_resource(void);
894 gbeauche 1.17 extern "C" void get_named_resource(void);
895     extern "C" void get_1_named_resource(void);
896 cebix 1.1 #endif
897    
898     void PatchNativeResourceManager(void)
899     {
900     D(bug("PatchNativeResourceManager\n"));
901    
902     // Patch native GetResource()
903 gbeauche 1.5 uint32 upp = ReadMacInt32(0x1480);
904     if ((upp & 0xffc00000) == ROM_BASE)
905 cebix 1.1 return;
906 gbeauche 1.12 uint32 tvec = ReadMacInt32(upp + 5 * 4);
907     D(bug(" GetResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
908     WriteMacInt32(XLM_RES_LIB_TOC, ReadMacInt32(tvec + 4));
909     WriteMacInt32(XLM_GET_RESOURCE, ReadMacInt32(tvec));
910 gbeauche 1.3 #if EMULATED_PPC
911 gbeauche 1.12 WriteMacInt32(tvec, NativeFunction(NATIVE_GET_RESOURCE));
912 gbeauche 1.3 #else
913 cebix 1.1 #ifdef __BEOS__
914     uint32 *tvec2 = (uint32 *)get_resource;
915 gbeauche 1.12 WriteMacInt32(tvec, tvec2[0]);
916     WriteMacInt32(tvec + 4, tvec2[1]);
917 cebix 1.1 #else
918 gbeauche 1.12 WriteMacInt32(tvec, (uint32)get_resource);
919 cebix 1.1 #endif
920 gbeauche 1.3 #endif
921 cebix 1.1
922     // Patch native Get1Resource()
923 gbeauche 1.5 upp = ReadMacInt32(0x0e7c);
924 gbeauche 1.12 tvec = ReadMacInt32(upp + 5 * 4);
925     D(bug(" Get1Resource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
926     WriteMacInt32(XLM_GET_1_RESOURCE, ReadMacInt32(tvec));
927 gbeauche 1.3 #if EMULATED_PPC
928 gbeauche 1.12 WriteMacInt32(tvec, NativeFunction(NATIVE_GET_1_RESOURCE));
929 gbeauche 1.3 #else
930 cebix 1.1 #ifdef __BEOS__
931     tvec2 = (uint32 *)get_1_resource;
932 gbeauche 1.12 WriteMacInt32(tvec, tvec2[0]);
933     WriteMacInt32(tvec + 4, tvec2[1]);
934 cebix 1.1 #else
935 gbeauche 1.12 WriteMacInt32(tvec, (uint32)get_1_resource);
936 cebix 1.1 #endif
937 gbeauche 1.3 #endif
938 cebix 1.1
939     // Patch native GetIndResource()
940 gbeauche 1.5 upp = ReadMacInt32(0x1474);
941 gbeauche 1.12 tvec = ReadMacInt32(upp + 5 * 4);
942     D(bug(" GetIndResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
943     WriteMacInt32(XLM_GET_IND_RESOURCE, ReadMacInt32(tvec));
944 gbeauche 1.3 #if EMULATED_PPC
945 gbeauche 1.12 WriteMacInt32(tvec, NativeFunction(NATIVE_GET_IND_RESOURCE));
946 gbeauche 1.3 #else
947 cebix 1.1 #ifdef __BEOS__
948     tvec2 = (uint32 *)get_ind_resource;
949 gbeauche 1.12 WriteMacInt32(tvec, tvec2[0]);
950     WriteMacInt32(tvec + 4, tvec2[1]);
951 cebix 1.1 #else
952 gbeauche 1.12 WriteMacInt32(tvec, (uint32)get_ind_resource);
953 cebix 1.1 #endif
954 gbeauche 1.3 #endif
955 cebix 1.1
956     // Patch native Get1IndResource()
957 gbeauche 1.5 upp = ReadMacInt32(0x0e38);
958 gbeauche 1.12 tvec = ReadMacInt32(upp + 5 * 4);
959     D(bug(" Get1IndResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
960     WriteMacInt32(XLM_GET_1_IND_RESOURCE, ReadMacInt32(tvec));
961 gbeauche 1.3 #if EMULATED_PPC
962 gbeauche 1.12 WriteMacInt32(tvec, NativeFunction(NATIVE_GET_1_IND_RESOURCE));
963 gbeauche 1.3 #else
964 cebix 1.1 #ifdef __BEOS__
965     tvec2 = (uint32 *)get_1_ind_resource;
966 gbeauche 1.12 WriteMacInt32(tvec, tvec2[0]);
967     WriteMacInt32(tvec + 4, tvec2[1]);
968 cebix 1.1 #else
969 gbeauche 1.12 WriteMacInt32(tvec, (uint32)get_1_ind_resource);
970 cebix 1.1 #endif
971 gbeauche 1.3 #endif
972 cebix 1.1
973     // Patch native RGetResource()
974 gbeauche 1.5 upp = ReadMacInt32(0x0e30);
975 gbeauche 1.12 tvec = ReadMacInt32(upp + 5 * 4);
976     D(bug(" RGetResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
977     WriteMacInt32(XLM_R_GET_RESOURCE, ReadMacInt32(tvec));
978 gbeauche 1.3 #if EMULATED_PPC
979 gbeauche 1.12 WriteMacInt32(tvec, NativeFunction(NATIVE_R_GET_RESOURCE));
980 gbeauche 1.3 #else
981 cebix 1.1 #ifdef __BEOS__
982     tvec2 = (uint32 *)r_get_resource;
983 gbeauche 1.12 WriteMacInt32(tvec, tvec2[0]);
984     WriteMacInt32(tvec + 4, tvec2[1]);
985 cebix 1.1 #else
986 gbeauche 1.12 WriteMacInt32(tvec, (uint32)r_get_resource);
987 gbeauche 1.3 #endif
988 cebix 1.1 #endif
989 gbeauche 1.17
990     // Patch native GetNamedResource()
991     upp = ReadMacInt32(0x1484);
992     tvec = ReadMacInt32(upp + 5 * 4);
993     D(bug(" GetNamedResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
994     WriteMacInt32(XLM_GET_NAMED_RESOURCE, ReadMacInt32(tvec));
995     #if EMULATED_PPC
996     WriteMacInt32(tvec, NativeFunction(NATIVE_GET_NAMED_RESOURCE));
997     #else
998     #ifdef __BEOS__
999     tvec2 = (uint32 *)get_named_resource;
1000     WriteMacInt32(tvec, tvec2[0]);
1001     WriteMacInt32(tvec + 4, tvec2[1]);
1002     #else
1003     WriteMacInt32(tvec, (uint32)get_named_resource);
1004     #endif
1005     #endif
1006    
1007     // Patch native Get1NamedResource()
1008     upp = ReadMacInt32(0x0e80);
1009     tvec = ReadMacInt32(upp + 5 * 4);
1010     D(bug(" Get1NamedResource() entry %08x, TOC %08x\n", ReadMacInt32(tvec), ReadMacInt32(tvec + 4)));
1011     WriteMacInt32(XLM_GET_1_NAMED_RESOURCE, ReadMacInt32(tvec));
1012     #if EMULATED_PPC
1013     WriteMacInt32(tvec, NativeFunction(NATIVE_GET_1_NAMED_RESOURCE));
1014     #else
1015     #ifdef __BEOS__
1016     tvec2 = (uint32 *)get_1_named_resource;
1017     WriteMacInt32(tvec, tvec2[0]);
1018     WriteMacInt32(tvec + 4, tvec2[1]);
1019     #else
1020     WriteMacInt32(tvec, (uint32)get_1_named_resource);
1021     #endif
1022     #endif
1023 cebix 1.1 }