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

Comparing BasiliskII/src/emul_op.cpp (file contents):
Revision 1.4 by cebix, 1999-10-19T17:41:13Z vs.
Revision 1.14 by cebix, 2000-06-23T14:22:45Z

# Line 1 | Line 1
1   /*
2   *  emul_op.cpp - 68k opcodes for ROM patches
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
# Line 42 | Line 42
42   #include "extfs.h"
43   #include "emul_op.h"
44  
45 + #if ENABLE_MON
46 + #include "mon.h"
47 + #endif
48 +
49   #define DEBUG 0
50   #include "debug.h"
51  
# Line 64 | Line 68 | void EmulOp(uint16 opcode, M68kRegisters
68                                     r->d[0], r->d[1], r->d[2], r->d[3], r->d[4], r->d[5], r->d[6], r->d[7],
69                                     r->a[0], r->a[1], r->a[2], r->a[3], r->a[4], r->a[5], r->a[6], r->a[7],
70                                     r->sr);
71 + #if ENABLE_MON
72 +                        char *arg[2] = {"rmon", NULL};
73 +                        mon(1, arg);
74 + #endif
75                          QuitEmulator();
76                          break;
77                  }
# Line 76 | Line 84 | void EmulOp(uint16 opcode, M68kRegisters
84                          D(bug("*** RESET ***\n"));
85                          TimerReset();
86                          EtherReset();
87 +                        AudioReset();
88  
89                          // Create BootGlobs at top of memory
90 <                        memset((void *)(RAMBaseHost + RAMSize - 4096), 0, 4096);
90 >                        Mac_memset(RAMBaseMac + RAMSize - 4096, 0, 4096);
91                          uint32 boot_globs = RAMBaseMac + RAMSize - 0x1c;
92                          WriteMacInt32(boot_globs + 0x00, RAMBaseMac);   // First RAM bank
93                          WriteMacInt32(boot_globs + 0x04, RAMSize);
# Line 296 | Line 305 | void EmulOp(uint16 opcode, M68kRegisters
305                          break;
306  
307                  case M68K_EMUL_OP_VIDEO_OPEN:           // Video driver functions
308 <                        r->d[0] = VideoOpen(r->a[0], r->a[1]);
308 >                        r->d[0] = VideoDriverOpen(r->a[0], r->a[1]);
309                          break;
310  
311                  case M68K_EMUL_OP_VIDEO_CONTROL:
312 <                        r->d[0] = VideoControl(r->a[0], r->a[1]);
312 >                        r->d[0] = VideoDriverControl(r->a[0], r->a[1]);
313                          break;
314  
315                  case M68K_EMUL_OP_VIDEO_STATUS:
316 <                        r->d[0] = VideoStatus(r->a[0], r->a[1]);
316 >                        r->d[0] = VideoDriverStatus(r->a[0], r->a[1]);
317                          break;
318  
319                  case M68K_EMUL_OP_SERIAL_OPEN:          // Serial driver functions
# Line 402 | Line 411 | void EmulOp(uint16 opcode, M68kRegisters
411                          break;
412                  }
413  
405                case M68K_EMUL_OP_MEMORY_DISPATCH: {    // MemoryDispatch() replacement routine
406                        int16 sel = r->d[0];
407                        D(bug("MemoryDispatch(%d)\n", sel));
408                        switch (sel) {
409                                case -6:        // GetLogicalRAMSize
410                                        r->d[0] = RAMSize;
411                                        break;
412                                case -3:
413                                        r->d[0] = 0x1000;
414                                        break;
415                                case 0:         // HoldMemory
416                                case 1:         // UnholdMemory
417                                case 2:         // LockMemory
418                                case 3:         // UnlockMemory
419                                case 4:         // LockMemoryContiguous
420                                case 6:         // ProtectMemory
421                                case 7:         // UnprotectMemory
422                                        r->d[0] = 0;
423                                        break;
424                                default:
425                                        printf("FATAL: MemoryDispatch(%d): illegal selector\n", sel);
426                                        r->d[0] = (uint32)-502;
427                                        break;
428                        }
429                        break;
430                }
431
414                  case M68K_EMUL_OP_IRQ:                  // Level 1 interrupt
415                          r->d[0] = 0;
416                          if (InterruptFlags & INTFLAG_60HZ) {
# Line 493 | Line 475 | void EmulOp(uint16 opcode, M68kRegisters
475                          r->d[0] = AudioDispatch(r->a[3], r->a[4]);
476                          break;
477  
478 + #if SUPPORTS_EXTFS
479                  case M68K_EMUL_OP_EXTFS_COMM:           // External file system routines
480                          WriteMacInt16(r->a[7] + 14, ExtFSComm(ReadMacInt16(r->a[7] + 12), ReadMacInt32(r->a[7] + 8), ReadMacInt32(r->a[7] + 4)));
481                          break;
# Line 500 | Line 483 | void EmulOp(uint16 opcode, M68kRegisters
483                  case M68K_EMUL_OP_EXTFS_HFS:
484                          WriteMacInt16(r->a[7] + 20, ExtFSHFS(ReadMacInt32(r->a[7] + 16), ReadMacInt16(r->a[7] + 14), ReadMacInt32(r->a[7] + 10), ReadMacInt32(r->a[7] + 6), ReadMacInt16(r->a[7] + 4)));
485                          break;
486 + #endif
487 +
488 +                case M68K_EMUL_OP_BLOCK_MOVE:           // BlockMove() replacement
489 +                        memmove(Mac2HostAddr(r->a[1]), Mac2HostAddr(r->a[0]), r->d[0]);
490 +                        break;
491  
492                  default:
493                          printf("FATAL: EMUL_OP called with bogus opcode %08x\n", opcode);
# Line 511 | Line 499 | void EmulOp(uint16 opcode, M68kRegisters
499                                     r->d[0], r->d[1], r->d[2], r->d[3], r->d[4], r->d[5], r->d[6], r->d[7],
500                                     r->a[0], r->a[1], r->a[2], r->a[3], r->a[4], r->a[5], r->a[6], r->a[7],
501                                     r->sr);
502 + #if ENABLE_MON
503 +                        char *arg[2] = {"rmon", NULL};
504 +                        mon(1, arg);
505 + #endif
506                          QuitEmulator();
507                          break;
508          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines