mirror of https://github.com/stella-emu/stella.git
222 lines
6.0 KiB
C++
222 lines
6.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-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 "CartEFSC.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeEFSC::CartridgeEFSC(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(65536u, size));
|
|
createCodeAccessBase(65536);
|
|
|
|
// Remember startup bank
|
|
myStartBank = 15;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeEFSC::reset()
|
|
{
|
|
initializeRAM(myRAM, 128);
|
|
|
|
// Upon reset we switch to the startup bank
|
|
bank(myStartBank);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeEFSC::install(System& system)
|
|
{
|
|
mySystem = &system;
|
|
|
|
System::PageAccess access(this, System::PA_READ);
|
|
|
|
// Set the page accessing method for the RAM writing pages
|
|
access.type = System::PA_WRITE;
|
|
for(uInt16 addr = 0x1000; addr < 0x1080; addr += System::PAGE_SIZE)
|
|
{
|
|
access.directPokeBase = &myRAM[addr & 0x007F];
|
|
access.codeAccessBase = &myCodeAccessBase[addr & 0x007F];
|
|
mySystem->setPageAccess(addr, access);
|
|
}
|
|
|
|
// Set the page accessing method for the RAM reading pages
|
|
access.directPokeBase = nullptr;
|
|
access.type = System::PA_READ;
|
|
for(uInt16 addr = 0x1080; addr < 0x1100; addr += System::PAGE_SIZE)
|
|
{
|
|
access.directPeekBase = &myRAM[addr & 0x007F];
|
|
access.codeAccessBase = &myCodeAccessBase[0x80 + (addr & 0x007F)];
|
|
mySystem->setPageAccess(addr, access);
|
|
}
|
|
|
|
// Install pages for the startup bank
|
|
bank(myStartBank);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt8 CartridgeEFSC::peek(uInt16 address)
|
|
{
|
|
uInt16 peekAddress = address;
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FE0) && (address <= 0x0FEF))
|
|
bank(address - 0x0FE0);
|
|
|
|
if(address < 0x0080) // Write port is at 0xF000 - 0xF080 (128 bytes)
|
|
{
|
|
// Reading from the write port triggers an unwanted write
|
|
uInt8 value = mySystem->getDataBusState(0xFF);
|
|
|
|
if(bankLocked())
|
|
return value;
|
|
else
|
|
{
|
|
triggerReadFromWritePort(peekAddress);
|
|
return myRAM[address] = value;
|
|
}
|
|
}
|
|
else
|
|
return myImage[myBankOffset + address];
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeEFSC::poke(uInt16 address, uInt8)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FE0) && (address <= 0x0FEF))
|
|
bank(address - 0x0FE0);
|
|
|
|
// NOTE: This does not handle accessing RAM, however, this function
|
|
// should never be called for RAM because of the way page accessing
|
|
// has been setup
|
|
return false;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeEFSC::bank(uInt16 bank)
|
|
{
|
|
if(bankLocked()) return false;
|
|
|
|
// Remember what bank we're in
|
|
myBankOffset = bank << 12;
|
|
|
|
System::PageAccess access(this, System::PA_READ);
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
for(uInt16 addr = (0x1FE0 & ~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 = 0x1100; addr < (0x1FE0U & ~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 CartridgeEFSC::getBank() const
|
|
{
|
|
return myBankOffset >> 12;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeEFSC::bankCount() const
|
|
{
|
|
return 16;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeEFSC::patch(uInt16 address, uInt8 value)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
if(address < 0x0100)
|
|
{
|
|
// Normally, a write to the read port won't do anything
|
|
// However, the patch command is special in that ignores such
|
|
// cart restrictions
|
|
myRAM[address & 0x007F] = value;
|
|
}
|
|
else
|
|
myImage[myBankOffset + address] = value;
|
|
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
const uInt8* CartridgeEFSC::getImage(uInt32& size) const
|
|
{
|
|
size = 65536;
|
|
return myImage;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeEFSC::save(Serializer& out) const
|
|
{
|
|
try
|
|
{
|
|
out.putString(name());
|
|
out.putShort(myBankOffset);
|
|
out.putByteArray(myRAM, 128);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeEFSC::save" << endl;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeEFSC::load(Serializer& in)
|
|
{
|
|
try
|
|
{
|
|
if(in.getString() != name())
|
|
return false;
|
|
|
|
myBankOffset = in.getShort();
|
|
in.getByteArray(myRAM, 128);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeEFSC::load" << endl;
|
|
return false;
|
|
}
|
|
|
|
// Remember what bank we were in
|
|
bank(myBankOffset >> 12);
|
|
|
|
return true;
|
|
}
|