mirror of https://github.com/stella-emu/stella.git
190 lines
4.6 KiB
C++
190 lines
4.6 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-2009 by Bradford W. Mott and the Stella team
|
|
//
|
|
// See the file "license" for information on usage and redistribution of
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
//
|
|
// $Id$
|
|
//============================================================================
|
|
|
|
#include <cassert>
|
|
#include <cstring>
|
|
|
|
#include "Random.hxx"
|
|
#include "System.hxx"
|
|
#include "CartF4.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeF4::CartridgeF4(const uInt8* image)
|
|
{
|
|
// Copy the ROM image into my buffer
|
|
memcpy(myImage, image, 32768);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
CartridgeF4::~CartridgeF4()
|
|
{
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4::reset()
|
|
{
|
|
// Upon reset we switch to bank 0
|
|
bank(0);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4::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((0x1000 & mask) == 0);
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
System::PageAccess access;
|
|
for(uInt32 i = (0x1FF4 & ~mask); i < 0x2000; i += (1 << shift))
|
|
{
|
|
access.directPeekBase = 0;
|
|
access.directPokeBase = 0;
|
|
access.device = this;
|
|
mySystem->setPageAccess(i >> shift, access);
|
|
}
|
|
|
|
// Install pages for bank 0
|
|
bank(0);
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt8 CartridgeF4::peek(uInt16 address)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FF4) && (address <= 0x0FFB))
|
|
{
|
|
bank(address - 0x0FF4);
|
|
}
|
|
|
|
return myImage[(myCurrentBank << 12) + address];
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4::poke(uInt16 address, uInt8)
|
|
{
|
|
address &= 0x0FFF;
|
|
|
|
// Switch banks if necessary
|
|
if((address >= 0x0FF4) && (address <= 0x0FFB))
|
|
{
|
|
bank(address - 0x0FF4);
|
|
}
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
void CartridgeF4::bank(uInt16 bank)
|
|
{
|
|
if(myBankLocked) return;
|
|
|
|
// Remember what bank we're in
|
|
myCurrentBank = bank;
|
|
uInt16 offset = myCurrentBank << 12;
|
|
uInt16 shift = mySystem->pageShift();
|
|
uInt16 mask = mySystem->pageMask();
|
|
|
|
// Setup the page access methods for the current bank
|
|
System::PageAccess access;
|
|
access.device = this;
|
|
access.directPokeBase = 0;
|
|
|
|
// Map ROM image into the system
|
|
for(uInt32 address = 0x1000; address < (0x1FF4U & ~mask);
|
|
address += (1 << shift))
|
|
{
|
|
access.directPeekBase = &myImage[offset + (address & 0x0FFF)];
|
|
mySystem->setPageAccess(address >> shift, access);
|
|
}
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
int CartridgeF4::bank()
|
|
{
|
|
return myCurrentBank;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
int CartridgeF4::bankCount()
|
|
{
|
|
return 8;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4::patch(uInt16 address, uInt8 value)
|
|
{
|
|
myImage[(myCurrentBank << 12) + (address & 0x0FFF)] = value;
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
uInt8* CartridgeF4::getImage(int& size)
|
|
{
|
|
size = 32768;
|
|
return &myImage[0];
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4::save(Serializer& out) const
|
|
{
|
|
const string& cart = name();
|
|
|
|
try
|
|
{
|
|
out.putString(cart);
|
|
out.putInt(myCurrentBank);
|
|
}
|
|
catch(const char* msg)
|
|
{
|
|
cerr << "ERROR: CartridgeF4::save" << endl << " " << msg << endl;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
bool CartridgeF4::load(Serializer& in)
|
|
{
|
|
const string& cart = name();
|
|
|
|
try
|
|
{
|
|
if(in.getString() != cart)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
myCurrentBank = (uInt16)in.getInt();
|
|
}
|
|
catch(const char* msg)
|
|
{
|
|
cerr << "ERROR: CartridgeF4::load" << endl << " " << msg << endl;
|
|
return false;
|
|
}
|
|
|
|
// Remember what bank we were in
|
|
bank(myCurrentBank);
|
|
|
|
return true;
|
|
}
|