mirror of https://github.com/stella-emu/stella.git
206 lines
5.0 KiB
C++
206 lines
5.0 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-2020 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 "CartF6.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeF6::CartridgeF6(const ByteBuffer& image, size_t size,
|
|
const string& md5, const Settings& settings)
|
|
: Cartridge(settings, md5)
|
|
{
|
|
// Copy the ROM image into my buffer
|
|
std::copy_n(image.get(), std::min(myImage.size(), size), myImage.begin());
|
|
createCodeAccessBase(myImage.size());
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF6::reset()
|
|
{
|
|
// Upon reset we switch to the startup bank
|
|
initializeStartBank(0);
|
|
bank(startBank());
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF6::install(System& system)
|
|
{
|
|
mySystem = &system;
|
|
|
|
// Upon install we'll setup the startup bank
|
|
bank(startBank());
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt8 CartridgeF6::peek(uInt16 address)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
switch(address)
|
|
{
|
|
case 0x0FF6:
|
|
// Set the current bank to the first 4k bank
|
|
bank(0);
|
|
break;
|
|
|
|
case 0x0FF7:
|
|
// Set the current bank to the second 4k bank
|
|
bank(1);
|
|
break;
|
|
|
|
case 0x0FF8:
|
|
// Set the current bank to the third 4k bank
|
|
bank(2);
|
|
break;
|
|
|
|
case 0x0FF9:
|
|
// Set the current bank to the forth 4k bank
|
|
bank(3);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return myImage[myBankOffset + address];
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF6::poke(uInt16 address, uInt8)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
switch(address)
|
|
{
|
|
case 0x0FF6:
|
|
// Set the current bank to the first 4k bank
|
|
bank(0);
|
|
break;
|
|
|
|
case 0x0FF7:
|
|
// Set the current bank to the second 4k bank
|
|
bank(1);
|
|
break;
|
|
|
|
case 0x0FF8:
|
|
// Set the current bank to the third 4k bank
|
|
bank(2);
|
|
break;
|
|
|
|
case 0x0FF9:
|
|
// Set the current bank to the forth 4k bank
|
|
bank(3);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF6::bank(uInt16 bank)
|
|
{
|
|
if(bankLocked()) return false;
|
|
|
|
// Remember what bank we're in
|
|
myBankOffset = bank << 12;
|
|
|
|
System::PageAccess access(this, System::PageAccessType::READ);
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
for(uInt16 addr = (0x1FF6 & ~System::PAGE_MASK); addr < 0x2000;
|
|
addr += System::PAGE_SIZE)
|
|
{
|
|
access.codeAccessBase = &myCodeAccessBase[myBankOffset + (addr & 0x0FFF)];
|
|
mySystem->setPageAccess(addr, access);
|
|
}
|
|
|
|
// Setup the page access methods for the current bank
|
|
for(uInt16 addr = 0x1000; addr < static_cast<uInt16>(0x1FF6U & ~System::PAGE_MASK);
|
|
addr += System::PAGE_SIZE)
|
|
{
|
|
access.directPeekBase = &myImage[myBankOffset + (addr & 0x0FFF)];
|
|
access.codeAccessBase = &myCodeAccessBase[myBankOffset + (addr & 0x0FFF)];
|
|
mySystem->setPageAccess(addr, access);
|
|
}
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeF6::getBank(uInt16) const
|
|
{
|
|
return myBankOffset >> 12;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeF6::bankCount() const
|
|
{
|
|
return 4;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF6::patch(uInt16 address, uInt8 value)
|
|
{
|
|
myImage[myBankOffset + (address & 0x0FFF)] = value;
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
const uInt8* CartridgeF6::getImage(size_t& size) const
|
|
{
|
|
size = myImage.size();
|
|
return myImage.data();
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF6::save(Serializer& out) const
|
|
{
|
|
try
|
|
{
|
|
out.putShort(myBankOffset);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeF6::save" << endl;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF6::load(Serializer& in)
|
|
{
|
|
try
|
|
{
|
|
myBankOffset = in.getShort();
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeF6::load" << endl;
|
|
return false;
|
|
}
|
|
|
|
// Remember what bank we were in
|
|
bank(myBankOffset >> 12);
|
|
|
|
return true;
|
|
}
|