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

Comparing BasiliskII/src/AmigaOS/main_amiga.cpp (file contents):
Revision 1.5 by cebix, 2000-04-10T18:52:37Z vs.
Revision 1.8 by cebix, 2000-07-22T16:00:34Z

# Line 91 | Line 91 | struct Library *GadToolsBase = NULL;
91   struct Library *IFFParseBase = NULL;
92   struct Library *AslBase = NULL;
93   struct Library *P96Base = NULL;
94 + struct Library *CyberGfxBase = NULL;
95   struct Library *TimerBase = NULL;
96   struct Library *AHIBase = NULL;
97   struct Library *DiskBase = NULL;
# Line 180 | Line 181 | int main(void)
181                  ErrorAlert(GetString(STR_NO_ASL_LIB_ERR));
182                  QuitEmulator();
183          }
184 +
185 +        // These two can fail (the respective gfx support won't be available, then)
186          P96Base = OpenLibrary((UBYTE *)"Picasso96API.library", 2);
187 +        CyberGfxBase = OpenLibrary((UBYTE *)"cybergraphics.library", 2);
188  
189          // Read preferences
190          PrefsInit();
# Line 343 | Line 347 | void __saveds quit_emulator(void)
347  
348   void QuitEmulator(void)
349   {
350 +        // Stop 60Hz thread
351 +        if (tick_proc) {
352 +                SetSignal(0, SIGF_SINGLE);
353 +                tick_proc_active = false;
354 +                Wait(SIGF_SINGLE);
355 +        }
356 +
357          // Restore stack
358          if (stack_swapped) {
359                  stack_swapped = false;
# Line 356 | Line 367 | void QuitEmulator(void)
367                  FreeSignal(IRQSig);
368          }
369  
359        // Stop 60Hz thread
360        if (tick_proc) {
361                SetSignal(0, SIGF_SINGLE);
362                tick_proc_active = false;
363                Wait(SIGF_SINGLE);
364        }
365
370          // Remove trap handler
371          MainTask->tc_TrapCode = OldTrapHandler;
372  
# Line 398 | Line 402 | void QuitEmulator(void)
402          PrefsExit();
403  
404          // Close libraries
405 +        if (CyberGfxBase)
406 +                CloseLibrary(CyberGfxBase);
407          if (P96Base)
408                  CloseLibrary(P96Base);
409          if (AslBase)
# Line 489 | Line 495 | static __saveds void tick_func(void)
495                  if (++tick_counter > 60) {
496                          tick_counter = 0;
497                          WriteMacInt32(0x20c, TimerDateTime());
498 +                        SetInterruptFlag(INTFLAG_1HZ);
499 +                        TriggerInterrupt();
500                  }
501  
502                  // Trigger 60Hz interrupt
# Line 602 | Line 610 | void __saveds IllInstrHandler(trap_regs
610                  EmulatedSR |= 0x0700;
611  
612                  // Call opcode routine
613 <                EmulOp(*(uint16 *)(r->pc), (M68kRegisters *)r);
613 >                EmulOp(opcode, (M68kRegisters *)r);
614                  r->pc += 2;
615  
616                  // Restore interrupts

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines