// // 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 //#define TRACE_ROM #include #include #include #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;loopWarning("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