|
|
1.1 root 1: /*
2: Hatari
3:
1.1.1.4 root 4: This file is distributed under the GNU Public License, version 2 or at
5: your option any later version. Read the file gpl.txt for details.
6:
7: Reset emulation state.
1.1 root 8: */
1.1.1.13 root 9: const char Reset_fileid[] = "Hatari reset.c : " __DATE__ " " __TIME__;
1.1 root 10:
11: #include "main.h"
1.1.1.10 root 12: #include "configuration.h"
1.1 root 13: #include "cart.h"
1.1.1.8 root 14: #include "dmaSnd.h"
1.1.1.14 root 15: #include "crossbar.h"
1.1 root 16: #include "fdc.h"
17: #include "floppy.h"
18: #include "gemdos.h"
19: #include "ikbd.h"
1.1.1.14 root 20: #include "cycInt.h"
1.1 root 21: #include "m68000.h"
22: #include "mfp.h"
1.1.1.12 root 23: #include "midi.h"
1.1 root 24: #include "psg.h"
25: #include "reset.h"
26: #include "screen.h"
27: #include "sound.h"
28: #include "stMemory.h"
29: #include "tos.h"
1.1.1.10 root 30: #include "vdi.h"
1.1 root 31: #include "video.h"
1.1.1.10 root 32: #include "falcon/videl.h"
1.1.1.15 root 33: #include "debugcpu.h"
34: #include "debugdsp.h"
1.1.1.2 root 35:
36: /*-----------------------------------------------------------------------*/
1.1.1.10 root 37: /**
38: * Reset ST emulator states, chips, interrupts and registers.
39: * Return zero or negative TOS image load error code.
40: */
1.1.1.11 root 41: static int Reset_ST(bool bCold)
1.1 root 42: {
1.1.1.10 root 43: if (bCold)
44: {
45: int ret;
46:
47: Floppy_GetBootDrive(); /* Find which device to boot from (A: or C:) */
48:
49: ret = TOS_LoadImage(); /* Load TOS, writes into cartridge memory */
50: if (ret)
51: return ret; /* If we can not load a TOS image, return now! */
52:
53: Cart_ResetImage(); /* Load cartridge program into ROM memory. */
54: }
1.1.1.14 root 55: CycInt_Reset(); /* Reset interrupts */
1.1.1.10 root 56: MFP_Reset(); /* Setup MFP chip */
57: Video_Reset(); /* Reset video */
1.1.1.16! root 58: VDI_Reset(); /* Reset internal VDI variables */
1.1.1.10 root 59:
60: GemDOS_Reset(); /* Reset GEMDOS emulation */
61: if (bCold)
62: {
63: FDC_Reset(); /* Reset FDC */
64: }
1.1.1.16! root 65: Floppy_Reset(); /* Reset Floppy */
1.1.1.10 root 66:
1.1.1.14 root 67: if (ConfigureParams.System.nMachineType == MACHINE_FALCON)
68: Crossbar_Reset(bCold); /* Reset Crossbar sound */
69: else
70: DmaSnd_Reset(bCold); /* Reset DMA sound */
71:
1.1.1.10 root 72: PSG_Reset(); /* Reset PSG */
73: Sound_Reset(); /* Reset Sound */
74: IKBD_Reset(bCold); /* Keyboard */
75: if (ConfigureParams.System.nMachineType == MACHINE_FALCON && !bUseVDIRes)
76: VIDEL_reset();
77: else
78: Screen_Reset(); /* Reset screen */
79: M68000_Reset(bCold); /* Reset CPU */
80:
1.1.1.15 root 81: DebugCpu_SetDebugging(); /* Re-set debugging flag if needed */
82: DebugDsp_SetDebugging();
83:
1.1.1.12 root 84: Midi_Reset();
85:
1.1.1.13 root 86: /* Start HBL, Timer B and VBL interrupts with a 0 cycle delay */
87: Video_StartInterrupts( 0 );
1.1.1.7 root 88:
1.1.1.10 root 89: return 0;
1.1 root 90: }
91:
1.1.1.2 root 92:
93: /*-----------------------------------------------------------------------*/
1.1.1.10 root 94: /**
95: * Cold reset ST (reset memory, all registers and reboot)
96: */
97: int Reset_Cold(void)
1.1 root 98: {
1.1.1.10 root 99: Main_WarpMouse(sdlscrn->w/2, sdlscrn->h/2); /* Set mouse pointer to the middle of the screen */
100:
1.1.1.13 root 101: return Reset_ST(true);
1.1 root 102: }
103:
1.1.1.2 root 104:
105: /*-----------------------------------------------------------------------*/
1.1.1.10 root 106: /**
107: * Warm reset ST (reset registers, leave in same state and reboot)
108: */
109: int Reset_Warm(void)
1.1 root 110: {
1.1.1.13 root 111: return Reset_ST(false);
1.1 root 112: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.