mirror of https://github.com/stella-emu/stella.git
245 lines
6.7 KiB
C++
245 lines
6.7 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-2014 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 <cassert>
|
|
#include <cstring>
|
|
|
|
#include "System.hxx"
|
|
#include "CartF4SC.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeF4SC::CartridgeF4SC(const uInt8* image, uInt32 size, const Settings& settings)
|
|
: Cartridge(settings)
|
|
{
|
|
// Copy the ROM image into my buffer
|
|
memcpy(myImage, image, BSPF_min(32768u, size));
|
|
createCodeAccessBase(32768);
|
|
|
|
// Remember startup bank
|
|
myStartBank = 0;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeF4SC::~CartridgeF4SC()
|
|
{
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4SC::reset()
|
|
{
|
|
// Initialize RAM
|
|
if(mySettings.getBool("ramrandom"))
|
|
for(uInt32 i = 0; i < 128; ++i)
|
|
myRAM[i] = mySystem->randGenerator().next();
|
|
else
|
|
memset(myRAM, 0, 128);
|
|
|
|
// Upon reset we switch to the startup bank
|
|
bank(myStartBank);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4SC::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(((0x1080 & mask) == 0) && ((0x1100 & mask) == 0));
|
|
|
|
System::PageAccess access(0, 0, 0, this, System::PA_READ);
|
|
|
|
// Set the page accessing method for the RAM writing pages
|
|
access.type = System::PA_WRITE;
|
|
for(uInt32 j = 0x1000; j < 0x1080; j += (1 << shift))
|
|
{
|
|
access.directPokeBase = &myRAM[j & 0x007F];
|
|
access.codeAccessBase = &myCodeAccessBase[j & 0x007F];
|
|
mySystem->setPageAccess(j >> shift, access);
|
|
}
|
|
|
|
// Set the page accessing method for the RAM reading pages
|
|
access.directPokeBase = 0;
|
|
access.type = System::PA_READ;
|
|
for(uInt32 k = 0x1080; k < 0x1100; k += (1 << shift))
|
|
{
|
|
access.directPeekBase = &myRAM[k & 0x007F];
|
|
access.codeAccessBase = &myCodeAccessBase[0x80 + (k & 0x007F)];
|
|
mySystem->setPageAccess(k >> shift, access);
|
|
}
|
|
|
|
// Install pages for the startup bank
|
|
bank(myStartBank);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt8 CartridgeF4SC::peek(uInt16 address)
|
|
{
|
|
uInt16 peekAddress = address;
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FF4) && (address <= 0x0FFB))
|
|
bank(address - 0x0FF4);
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
// 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 myImage[(myCurrentBank << 12) + address];
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4SC::poke(uInt16 address, uInt8)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FF4) && (address <= 0x0FFB))
|
|
bank(address - 0x0FF4);
|
|
|
|
// 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 CartridgeF4SC::bank(uInt16 bank)
|
|
{
|
|
if(bankLocked()) return false;
|
|
|
|
// Remember what bank we're in
|
|
myCurrentBank = bank;
|
|
uInt16 offset = myCurrentBank << 12;
|
|
uInt16 shift = mySystem->pageShift();
|
|
uInt16 mask = mySystem->pageMask();
|
|
|
|
System::PageAccess access(0, 0, 0, this, System::PA_READ);
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
for(uInt32 i = (0x1FF4 & ~mask); i < 0x2000; i += (1 << shift))
|
|
{
|
|
access.codeAccessBase = &myCodeAccessBase[offset + (i & 0x0FFF)];
|
|
mySystem->setPageAccess(i >> shift, access);
|
|
}
|
|
|
|
// Setup the page access methods for the current bank
|
|
for(uInt32 address = 0x1100; address < (0x1FF4U & ~mask);
|
|
address += (1 << shift))
|
|
{
|
|
access.directPeekBase = &myImage[offset + (address & 0x0FFF)];
|
|
access.codeAccessBase = &myCodeAccessBase[offset + (address & 0x0FFF)];
|
|
mySystem->setPageAccess(address >> shift, access);
|
|
}
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeF4SC::bank() const
|
|
{
|
|
return myCurrentBank;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt16 CartridgeF4SC::bankCount() const
|
|
{
|
|
return 8;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4SC::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[(myCurrentBank << 12) + address] = value;
|
|
|
|
return myBankChanged = true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
const uInt8* CartridgeF4SC::getImage(int& size) const
|
|
{
|
|
size = 32768;
|
|
return myImage;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4SC::save(Serializer& out) const
|
|
{
|
|
try
|
|
{
|
|
out.putString(name());
|
|
out.putShort(myCurrentBank);
|
|
out.putByteArray(myRAM, 128);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeF4SC::save" << endl;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4SC::load(Serializer& in)
|
|
{
|
|
try
|
|
{
|
|
if(in.getString() != name())
|
|
return false;
|
|
|
|
myCurrentBank = in.getShort();
|
|
in.getByteArray(myRAM, 128);
|
|
}
|
|
catch(...)
|
|
{
|
|
cerr << "ERROR: CartridgeF4SC::load" << endl;
|
|
return false;
|
|
}
|
|
|
|
// Remember what bank we were in
|
|
bank(myCurrentBank);
|
|
|
|
return true;
|
|
}
|