-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rom.cpp
146 lines (121 loc) · 4.95 KB
/
Rom.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
//
// Copyright (c) 2004 K. Wilkins
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from
// the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
//////////////////////////////////////////////////////////////////////////////
// Handy - An Atari Lynx Emulator //
// Copyright (c) 1996,1997 //
// K. Wilkins //
//////////////////////////////////////////////////////////////////////////////
// ROM emulation class //
//////////////////////////////////////////////////////////////////////////////
// //
// This class emulates the system ROM (512B), the interface is pretty //
// simple: constructor, reset, peek, poke. //
// //
// K. Wilkins //
// August 1997 //
// //
//////////////////////////////////////////////////////////////////////////////
// Revision History: //
// ----------------- //
// //
// 01Aug1997 KW Document header added & class documented. //
// //
//////////////////////////////////////////////////////////////////////////////
#define ROM_CPP
//#include <crtdbg.h>
//#define TRACE_ROM
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "System.h"
#include "Rom.h"
extern CErrorInterface *gError;
CRom::CRom(char *romfile)
{
mWriteEnable=FALSE;
strncpy(mFileName,romfile,1024);
Reset();
// Initialise ROM
for(int loop=0;loop<ROM_SIZE;loop++) mRomData[loop]=DEFAULT_ROM_CONTENTS;
// Load up the file
FILE *fp;
if((fp=fopen(mFileName,"rb"))==NULL)
{
CLynxException lynxerr;
lynxerr.Message() << "The Lynx Boot ROM image couldn't be located!";
lynxerr.Description()
<< "The lynx emulator will not run without the Boot ROM image." << endl
<< "\"" << romfile << "\" was not found in the lynx emulator " << endl
<< "directory (see the LynxEmu User Guide for more information).";
throw(lynxerr);
}
// Read in the 512 bytes
if(fread(mRomData,sizeof(char),ROM_SIZE,fp)!=ROM_SIZE)
{
CLynxException lynxerr;
lynxerr.Message() << "The Lynx Boot ROM image couldn't be loaded!";
lynxerr.Description()
<< "The lynx emulator will not run without the Boot ROM image." << endl
<< "It appears that your BOOT image may be corrupted or there is" << endl
<< "some other error.(see the LynxEmu User Guide for more information)";
throw(lynxerr);
}
fclose(fp);
// Check the code that has been loaded and report an error if its a
// fake version of the bootrom
UBYTE mRomCheck[16]={0x38,0x80,0x0A,0x90,0x04,0x8E,0x8B,0xFD,
0x18,0xE8,0x8E,0x87,0xFD,0xA2,0x02,0x8E};
static bool firsttime=TRUE;
if(firsttime)
{
firsttime=FALSE;
for(ULONG loop=0;loop<16;loop++)
{
if(mRomCheck[loop]!=mRomData[loop])
{
gError->Warning("FAKE LYNXBOOT.IMG - CARTRIDGES WILL NOT WORK\n\n"
"PLEASE READ THE ACCOMPANYING README.TXT FILE\n\n"
"(Do not email the author asking for this image)\n");
break;
}
}
}
}
void CRom::Reset(void)
{
// Nothing to do here
}
bool CRom::ContextSave(FILE *fp)
{
if(!fprintf(fp,"CRom::ContextSave")) return 0;
if(!fwrite(mRomData,sizeof(UBYTE),ROM_SIZE,fp)) return 0;
return 1;
}
bool CRom::ContextLoad(LSS_FILE *fp)
{
char teststr[100]="XXXXXXXXXXXXXXXXX";
if(!lss_read(teststr,sizeof(char),17,fp)) return 0;
if(strcmp(teststr,"CRom::ContextSave")!=0) return 0;
if(!lss_read(mRomData,sizeof(UBYTE),ROM_SIZE,fp)) return 0;
return 1;
}
//END OF FILE