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 |
42 |
|
#include "extfs.h" |
43 |
|
#include "emul_op.h" |
44 |
|
|
45 |
< |
#if ENABLE_MON |
45 |
> |
#ifdef ENABLE_MON |
46 |
|
#include "mon.h" |
47 |
|
#endif |
48 |
|
|
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 |
71 |
> |
#ifdef ENABLE_MON |
72 |
|
char *arg[2] = {"rmon", NULL}; |
73 |
|
mon(1, arg); |
74 |
|
#endif |
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); |
196 |
|
break; |
197 |
|
|
198 |
|
case M68K_EMUL_OP_FIX_BOOTSTACK: // Set boot stack to 3/4 of RAM (7.5) |
198 |
– |
D(bug("Fix boot stack\n")); |
199 |
|
r->a[1] = RAMBaseMac + RAMSize * 3 / 4; |
200 |
+ |
D(bug("Fix boot stack %08x\n", r->a[1])); |
201 |
|
break; |
202 |
|
|
203 |
|
case M68K_EMUL_OP_FIX_MEMSIZE: { // Set correct logical and physical memory size |
413 |
|
|
414 |
|
case M68K_EMUL_OP_IRQ: // Level 1 interrupt |
415 |
|
r->d[0] = 0; |
416 |
+ |
|
417 |
|
if (InterruptFlags & INTFLAG_60HZ) { |
418 |
|
ClearInterruptFlag(INTFLAG_60HZ); |
419 |
|
if (HasMacStarted()) { |
422 |
|
ADBInterrupt(); |
423 |
|
TimerInterrupt(); |
424 |
|
VideoInterrupt(); |
423 |
– |
SonyInterrupt(); |
424 |
– |
DiskInterrupt(); |
425 |
– |
CDROMInterrupt(); |
425 |
|
|
426 |
|
// Call DoVBLTask(0) |
427 |
|
if (ROMVersion == ROM_VERSION_32) { |
433 |
|
r->d[0] = 1; // Flag: 68k interrupt routine executes VBLTasks etc. |
434 |
|
} |
435 |
|
} |
436 |
+ |
|
437 |
+ |
if (InterruptFlags & INTFLAG_1HZ) { |
438 |
+ |
ClearInterruptFlag(INTFLAG_1HZ); |
439 |
+ |
|
440 |
+ |
if (HasMacStarted()) { |
441 |
+ |
SonyInterrupt(); |
442 |
+ |
DiskInterrupt(); |
443 |
+ |
CDROMInterrupt(); |
444 |
+ |
} |
445 |
+ |
} |
446 |
+ |
|
447 |
|
if (InterruptFlags & INTFLAG_SERIAL) { |
448 |
|
ClearInterruptFlag(INTFLAG_SERIAL); |
449 |
|
SerialInterrupt(); |
450 |
|
} |
451 |
+ |
|
452 |
|
if (InterruptFlags & INTFLAG_ETHER) { |
453 |
|
ClearInterruptFlag(INTFLAG_ETHER); |
454 |
|
EtherInterrupt(); |
455 |
|
} |
456 |
+ |
|
457 |
|
if (InterruptFlags & INTFLAG_AUDIO) { |
458 |
|
ClearInterruptFlag(INTFLAG_AUDIO); |
459 |
|
AudioInterrupt(); |
510 |
|
r->d[0], r->d[1], r->d[2], r->d[3], r->d[4], r->d[5], r->d[6], r->d[7], |
511 |
|
r->a[0], r->a[1], r->a[2], r->a[3], r->a[4], r->a[5], r->a[6], r->a[7], |
512 |
|
r->sr); |
513 |
< |
#if ENABLE_MON |
513 |
> |
#ifdef ENABLE_MON |
514 |
|
char *arg[2] = {"rmon", NULL}; |
515 |
|
mon(1, arg); |
516 |
|
#endif |