1 |
/* |
2 |
* xpram_amiga.cpp - XPRAM handling, AmigaOS specific stuff |
3 |
* |
4 |
* Basilisk II (C) 1997-2008 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 |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
*/ |
20 |
|
21 |
#include <exec/types.h> |
22 |
#define __USE_SYSBASE |
23 |
#include <proto/dos.h> |
24 |
#include <inline/dos.h> |
25 |
|
26 |
#include "sysdeps.h" |
27 |
#include "xpram.h" |
28 |
|
29 |
|
30 |
// XPRAM file name |
31 |
#if POWERPC_ROM |
32 |
static char XPRAM_FILE_NAME[] = "ENV:SheepShaver_NVRAM"; |
33 |
static char XPRAM_FILE_NAME_ARC[] = "ENVARC:SheepShaver_NVRAM"; |
34 |
#else |
35 |
static char XPRAM_FILE_NAME[] = "ENV:BasiliskII_XPRAM"; |
36 |
static char XPRAM_FILE_NAME_ARC[] = "ENVARC:BasiliskII_XPRAM"; |
37 |
#endif |
38 |
|
39 |
|
40 |
/* |
41 |
* Load XPRAM from settings file |
42 |
*/ |
43 |
|
44 |
void LoadXPRAM(void) |
45 |
{ |
46 |
BPTR fh; |
47 |
if ((fh = Open(XPRAM_FILE_NAME, MODE_OLDFILE)) != NULL) { |
48 |
Read(fh, XPRAM, XPRAM_SIZE); |
49 |
Close(fh); |
50 |
} |
51 |
} |
52 |
|
53 |
|
54 |
/* |
55 |
* Save XPRAM to settings file |
56 |
*/ |
57 |
|
58 |
void SaveXPRAM(void) |
59 |
{ |
60 |
BPTR fh; |
61 |
if ((fh = Open(XPRAM_FILE_NAME, MODE_NEWFILE)) != NULL) { |
62 |
Write(fh, XPRAM, XPRAM_SIZE); |
63 |
Close(fh); |
64 |
} |
65 |
if ((fh = Open(XPRAM_FILE_NAME_ARC, MODE_NEWFILE)) != NULL) { |
66 |
Write(fh, XPRAM, XPRAM_SIZE); |
67 |
Close(fh); |
68 |
} |
69 |
} |
70 |
|
71 |
|
72 |
/* |
73 |
* Delete PRAM file |
74 |
*/ |
75 |
|
76 |
void ZapPRAM(void) |
77 |
{ |
78 |
DeleteFile(XPRAM_FILE_NAME); |
79 |
DeleteFile(XPRAM_FILE_NAME_ARC); |
80 |
} |