mirror of https://github.com/stella-emu/stella.git
203 lines
5.2 KiB
C++
203 lines
5.2 KiB
C++
//============================================================================
|
|
//
|
|
// 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-2017 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.
|
|
//============================================================================
|
|
|
|
#include "System.hxx"
|
|
#include "CartUA.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeUA::CartridgeUA(const BytePtr& image, uInt32 size,
|
|
const Settings& settings)
|
|
: Cartridge(settings),
|
|
myBankOffset(0)
|
|
{
|
|
// Copy the ROM image into my buffer
|
|
memcpy(myImage, image.get(), std::min(8192u, size));
|
|
createCodeAccessBase(8192);
|
|
|
|
// Remember startup bank
|
|
myStartBank = 0;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeUA::reset()
|
|
{
|
|
// Upon reset we switch to the startup bank
|
|
bank(myStartBank);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeUA::install(System& system)
|
|
{
|
|
mySystem = &system;
|
|
|
|
// 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 >> System::PAGE_SHIFT);
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
System::PageAccess access(this, System::PA_READ);
|
|
mySystem->setPageAccess(0x0220 >> System::PAGE_SHIFT, access);
|
|
mySystem->setPageAccess(0x0240 >> System::PAGE_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;
|
|
}
|
|
|
|
// Because of the way accessing is set up, we will only get here
|
|
// when doing a TIA read
|
|
return myHotSpotPageAccess.device->peek(address);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
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;
|
|
}
|
|
|
|
// Because of the way accessing is set up, we will may get here by
|
|
// doing a write to TIA or cart; we ignore the cart write
|
|
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
|
|
myBankOffset = bank << 12;
|
|
|
|
// Setup the page access methods for the current bank
|
|
System::PageAccess access(this, System::PA_READ);
|
|
|
|
// Map ROM image into the system
|
|
for(uInt32 address = 0x1000; address < 0x2000;
|
|
address += (1 << System::PAGE_SHIFT))
|
|
{
|
|
access.directPeekBase = &myImage[myBankOffset + (address & 0x0FFF)];
|
|
access.codeAccessBase = &myCodeAccessBase[myBankOffset + (address & 0x0FFF)];
|
|
mySystem->setPageAccess(address >> System::PAGE_SHIFT, access);
|
|
}
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeUA::getBank() const
|
|
{
|
|
return myBankOffset >> 12;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeUA::bankCount() const
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeUA::patch(uInt16 address, uInt8 value)
|
|
{
|
|
myImage[myBankOffset + (address & 0x0FFF)] = value;
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
const uInt8* CartridgeUA::getImage(uInt32& size) const
|
|
{
|
|
size = 8192;
|
|
return myImage;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeUA::save(Serializer& out) const
|
|
{
|
|
try
|
|
{
|
|
out.putString(name());
|
|
out.putShort(myBankOffset);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeUA::save" << endl;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeUA::load(Serializer& in)
|
|
{
|
|
try
|
|
{
|
|
if(in.getString() != name())
|
|
return false;
|
|
|
|
myBankOffset = in.getShort();
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeUA::load" << endl;
|
|
return false;
|
|
}
|
|
|
|
// Remember what bank we were in
|
|
bank(myBankOffset >> 12);
|
|
|
|
return true;
|
|
}
|