//============================================================================ // // SSSS tt lll lll // SS SS tt ll ll // SS tttttt eeee ll ll aaaa // SSSS tt ee ee ll ll aa // SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" // SS SS tt ee ll ll aa aa // SSSS ttt eeeee llll llll aaaaa // // Copyright (c) 1995-2010 by Bradford W. Mott, Stephen Anthony // and the Stella Team // // See the file "License.txt" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // // $Id$ //============================================================================ #include #include #include "System.hxx" #include "CartUA.hxx" // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CartridgeUA::CartridgeUA(const uInt8* image) { // Copy the ROM image into my buffer memcpy(myImage, image, 8192); // Remember startup bank myStartBank = 0; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CartridgeUA::~CartridgeUA() { } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void CartridgeUA::reset() { // Upon reset we switch to the startup bank bank(myStartBank); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void CartridgeUA::install(System& system) { mySystem = &system; uInt16 shift = mySystem->pageShift(); uInt16 mask = mySystem->pageMask(); // Make sure the system we're being installed in has a page size that'll work assert((0x1000 & mask) == 0); // Get the page accessing methods for the hot spots since they overlap // areas within the TIA we'll need to forward requests to the TIA myHotSpotPageAccess = mySystem->getPageAccess(0x0220 >> shift); // Set the page accessing methods for the hot spots System::PageAccess access; access.directPeekBase = 0; access.directPokeBase = 0; access.device = this; access.type = System::PA_READ; mySystem->setPageAccess(0x0220 >> shift, access); mySystem->setPageAccess(0x0240 >> shift, access); // Install pages for the startup bank bank(myStartBank); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt8 CartridgeUA::peek(uInt16 address) { address &= 0x1FFF; // Switch banks if necessary switch(address) { case 0x0220: // Set the current bank to the lower 4k bank bank(0); break; case 0x0240: // Set the current bank to the upper 4k bank bank(1); break; default: break; } if(!(address & 0x1000)) { return myHotSpotPageAccess.device->peek(address); } else { return 0; } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool CartridgeUA::poke(uInt16 address, uInt8 value) { address &= 0x1FFF; // Switch banks if necessary switch(address) { case 0x0220: // Set the current bank to the lower 4k bank bank(0); break; case 0x0240: // Set the current bank to the upper 4k bank bank(1); break; default: break; } if(!(address & 0x1000)) { myHotSpotPageAccess.device->poke(address, value); } return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool CartridgeUA::bank(uInt16 bank) { if(bankLocked()) return false; // Remember what bank we're in myCurrentBank = bank; uInt16 offset = myCurrentBank << 12; uInt16 shift = mySystem->pageShift(); // Setup the page access methods for the current bank System::PageAccess access; access.directPokeBase = 0; access.device = this; access.type = System::PA_READ; // Map ROM image into the system for(uInt32 address = 0x1000; address < 0x2000; address += (1 << shift)) { access.directPeekBase = &myImage[offset + (address & 0x0FFF)]; mySystem->setPageAccess(address >> shift, access); } return myBankChanged = true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt16 CartridgeUA::bank() const { return myCurrentBank; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt16 CartridgeUA::bankCount() const { return 2; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool CartridgeUA::patch(uInt16 address, uInt8 value) { myImage[(myCurrentBank << 12) + (address & 0x0FFF)] = value; return myBankChanged = true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - const uInt8* CartridgeUA::getImage(int& size) const { size = 8192; return myImage; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool CartridgeUA::save(Serializer& out) const { try { out.putString(name()); out.putInt(myCurrentBank); } catch(const char* msg) { cerr << "ERROR: CartridgeUA::save" << endl << " " << msg << endl; return false; } return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool CartridgeUA::load(Serializer& in) { try { if(in.getString() != name()) return false; myCurrentBank = (uInt16)in.getInt(); } catch(const char* msg) { cerr << "ERROR: CartridgeUA::load" << endl << " " << msg << endl; return false; } // Remember what bank we were in bank(myCurrentBank); return true; }