stella/src/emucore/CartFC.cxx

79 lines
2.1 KiB
C++
Raw Normal View History

2019-11-02 12:23:23 +00:00
//============================================================================
//
// 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
2019-11-02 12:23:23 +00:00
// 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 "CartFC.hxx"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CartridgeFC::CartridgeFC(const ByteBuffer& image, size_t size,
const string& md5, const Settings& settings)
2020-04-03 15:08:42 +00:00
: CartridgeEnhanced(image, size, md5, settings)
2019-11-02 12:23:23 +00:00
{
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void CartridgeFC::reset()
{
2020-04-03 15:08:42 +00:00
CartridgeEnhanced::reset();
2019-11-02 12:23:23 +00:00
2020-04-03 15:08:42 +00:00
myTargetBank = 0;
2019-11-02 12:23:23 +00:00
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2020-04-03 15:08:42 +00:00
bool CartridgeFC::checkSwitchBank(uInt16 address, uInt8)
2019-11-02 12:23:23 +00:00
{
// Switch banks if necessary
if(address == 0x0FFC)
2019-11-02 12:23:23 +00:00
{
// Trigger the bank switch
bank(myTargetBank);
2020-04-03 15:08:42 +00:00
return true;
2019-11-02 12:23:23 +00:00
}
2020-04-03 15:08:42 +00:00
return false;
2019-11-02 12:23:23 +00:00
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool CartridgeFC::poke(uInt16 address, uInt8 value)
{
2020-04-03 15:08:42 +00:00
address &= myBankMask;
2019-11-02 12:23:23 +00:00
// Switch banks if necessary
switch (address)
{
case 0x0FF8:
// Set the two lowest bits of target 4k bank
myTargetBank = value & 0b11;
break;
case 0x0FF9:
// Set the high bits of target 4k bank
2019-12-18 18:12:04 +00:00
if (value << 2 < bankCount())
{
myTargetBank += value << 2;
myTargetBank %= bankCount();
}
else
// special handling when both values are identical (e.g. 4/4 or 5/5)
myTargetBank = value % bankCount();
2019-11-02 12:23:23 +00:00
break;
default:
2020-04-03 15:08:42 +00:00
checkSwitchBank(address);
2019-11-02 12:23:23 +00:00
}
return false;
}