Little-endian fixes for SheepShaver

This commit is contained in:
gbeauche 2003-05-13 12:34:09 +00:00
parent 5bd60842d6
commit ffd603b472
2 changed files with 28 additions and 28 deletions

View File

@ -372,13 +372,13 @@ void ADBInterrupt(void)
// Update mouse position (absolute) // Update mouse position (absolute)
if (mx != old_mouse_x || my != old_mouse_y) { if (mx != old_mouse_x || my != old_mouse_y) {
#ifdef POWERPC_ROM #ifdef POWERPC_ROM
static const uint16 proc[] = { static const uint8 proc[] = {
0x2f08, // move.l a0,-(sp) 0x2f, 0x08, // move.l a0,-(sp)
0x2f00, // move.l d0,-(sp) 0x2f, 0x00, // move.l d0,-(sp)
0x2f01, // move.l d1,-(sp) 0x2f, 0x01, // move.l d1,-(sp)
0x7001, // moveq #1,d0 (MoveTo) 0x70, 0x01, // moveq #1,d0 (MoveTo)
0xaadb, // CursorDeviceDispatch 0xaa, 0xdb, // CursorDeviceDispatch
M68K_RTS M68K_RTS >> 8, M68K_RTS & 0xff
}; };
r.a[0] = ReadMacInt32(mouse_base + 4); r.a[0] = ReadMacInt32(mouse_base + 4);
r.d[0] = mx; r.d[0] = mx;

View File

@ -611,27 +611,27 @@ int16 SoundInStatus(uint32 pb, uint32 dce)
case siDeviceIcon: { case siDeviceIcon: {
M68kRegisters r; M68kRegisters r;
static const uint16 proc[] = { static const uint8 proc[] = {
0x558f, // subq.l #2,sp 0x55, 0x8f, // subq.l #2,sp
0xa994, // CurResFile 0xa9, 0x94, // CurResFile
0x4267, // clr.w -(sp) 0x42, 0x67, // clr.w -(sp)
0xa998, // UseResFile 0xa9, 0x98, // UseResFile
0x598f, // subq.l #4,sp 0x59, 0x8f, // subq.l #4,sp
0x4879, 0x4943, 0x4e23, // move.l #'ICN#',-(sp) 0x48, 0x79, 0x49, 0x43, 0x4e, 0x23, // move.l #'ICN#',-(sp)
0x3f3c, 0xbf76, // move.w #-16522,-(sp) 0x3f, 0x3c, 0xbf, 0x76, // move.w #-16522,-(sp)
0xa9a0, // GetResource 0xa9, 0xa0, // GetResource
0x245f, // move.l (sp)+,a2 0x24, 0x5f, // move.l (sp)+,a2
0xa998, // UseResFile 0xa9, 0x98, // UseResFile
0x200a, // move.l a2,d0 0x20, 0x0a, // move.l a2,d0
0x6604, // bne 1 0x66, 0x04, // bne 1
0x7000, // moveq #0,d0 0x70, 0x00, // moveq #0,d0
M68K_RTS, M68K_RTS >> 8, M68K_RTS & 0xff,
0x2f0a, //1 move.l a2,-(sp) 0x2f, 0x0a, //1 move.l a2,-(sp)
0xa992, // DetachResource 0xa9, 0x92, // DetachResource
0x204a, // move.l a2,a0 0x20, 0x4a, // move.l a2,a0
0xa04a, // HNoPurge 0xa0, 0x4a, // HNoPurge
0x7001, // moveq #1,d0 0x70, 0x01, // moveq #1,d0
M68K_RTS M68K_RTS >> 8, M68K_RTS & 0xff
}; };
Execute68k((uint32)proc, &r); Execute68k((uint32)proc, &r);
if (r.d[0]) { if (r.d[0]) {