2001-12-27 19:54:36 +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
|
|
|
|
//
|
2007-01-01 18:04:56 +00:00
|
|
|
// Copyright (c) 1995-2007 by Bradford W. Mott and the Stella team
|
2001-12-27 19:54:36 +00:00
|
|
|
//
|
|
|
|
// See the file "license" for information on usage and redistribution of
|
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//
|
2007-01-14 16:17:57 +00:00
|
|
|
// $Id: CartFASC.cxx,v 1.12 2007-01-14 16:17:54 stephena Exp $
|
2001-12-27 19:54:36 +00:00
|
|
|
//============================================================================
|
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
#include "Random.hxx"
|
|
|
|
#include "System.hxx"
|
2002-05-13 19:17:32 +00:00
|
|
|
#include "Serializer.hxx"
|
|
|
|
#include "Deserializer.hxx"
|
2007-01-14 16:17:57 +00:00
|
|
|
#include "CartFASC.hxx"
|
2001-12-27 19:54:36 +00:00
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
CartridgeFASC::CartridgeFASC(const uInt8* image)
|
|
|
|
{
|
|
|
|
// Copy the ROM image into my buffer
|
|
|
|
for(uInt32 addr = 0; addr < 12288; ++addr)
|
|
|
|
{
|
|
|
|
myImage[addr] = image[addr];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize RAM with random values
|
2005-10-09 17:31:47 +00:00
|
|
|
class Random random;
|
2001-12-27 19:54:36 +00:00
|
|
|
for(uInt32 i = 0; i < 256; ++i)
|
|
|
|
{
|
|
|
|
myRAM[i] = random.next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
CartridgeFASC::~CartridgeFASC()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
const char* CartridgeFASC::name() const
|
|
|
|
{
|
|
|
|
return "CartridgeFASC";
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
void CartridgeFASC::reset()
|
|
|
|
{
|
|
|
|
// Upon reset we switch to bank 2
|
|
|
|
bank(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
void CartridgeFASC::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(((0x1100 & mask) == 0) && ((0x1200 & mask) == 0));
|
|
|
|
|
|
|
|
// Set the page accessing methods for the hot spots
|
|
|
|
System::PageAccess access;
|
|
|
|
for(uInt32 i = (0x1FF8 & ~mask); i < 0x2000; i += (1 << shift))
|
|
|
|
{
|
|
|
|
access.directPeekBase = 0;
|
|
|
|
access.directPokeBase = 0;
|
|
|
|
access.device = this;
|
|
|
|
mySystem->setPageAccess(i >> shift, access);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the page accessing method for the RAM writing pages
|
|
|
|
for(uInt32 j = 0x1000; j < 0x1100; j += (1 << shift))
|
|
|
|
{
|
|
|
|
access.device = this;
|
|
|
|
access.directPeekBase = 0;
|
|
|
|
access.directPokeBase = &myRAM[j & 0x00FF];
|
|
|
|
mySystem->setPageAccess(j >> shift, access);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the page accessing method for the RAM reading pages
|
|
|
|
for(uInt32 k = 0x1100; k < 0x1200; k += (1 << shift))
|
|
|
|
{
|
|
|
|
access.device = this;
|
|
|
|
access.directPeekBase = &myRAM[k & 0x00FF];
|
|
|
|
access.directPokeBase = 0;
|
|
|
|
mySystem->setPageAccess(k >> shift, access);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Install pages for bank 2
|
|
|
|
bank(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
uInt8 CartridgeFASC::peek(uInt16 address)
|
|
|
|
{
|
|
|
|
address = address & 0x0FFF;
|
|
|
|
|
|
|
|
// Switch banks if necessary
|
|
|
|
switch(address)
|
|
|
|
{
|
|
|
|
case 0x0FF8:
|
|
|
|
// Set the current bank to the lower 4k bank
|
|
|
|
bank(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0FF9:
|
|
|
|
// Set the current bank to the middle 4k bank
|
|
|
|
bank(1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0FFA:
|
|
|
|
// Set the current bank to the upper 4k bank
|
|
|
|
bank(2);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 * 4096 + address];
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
void CartridgeFASC::poke(uInt16 address, uInt8)
|
|
|
|
{
|
|
|
|
address = address & 0x0FFF;
|
|
|
|
|
|
|
|
// Switch banks if necessary
|
|
|
|
switch(address)
|
|
|
|
{
|
|
|
|
case 0x0FF8:
|
|
|
|
// Set the current bank to the lower 4k bank
|
|
|
|
bank(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0FF9:
|
|
|
|
// Set the current bank to the middle 4k bank
|
|
|
|
bank(1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0FFA:
|
|
|
|
// Set the current bank to the upper 4k bank
|
|
|
|
bank(2);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2002-05-13 19:17:32 +00:00
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
bool CartridgeFASC::save(Serializer& out)
|
|
|
|
{
|
|
|
|
string cart = name();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
out.putString(cart);
|
|
|
|
|
2005-12-17 01:23:07 +00:00
|
|
|
out.putInt(myCurrentBank);
|
2002-05-13 19:17:32 +00:00
|
|
|
|
|
|
|
// The 256 bytes of RAM
|
2005-12-17 01:23:07 +00:00
|
|
|
out.putInt(256);
|
2002-05-13 19:17:32 +00:00
|
|
|
for(uInt32 i = 0; i < 256; ++i)
|
2005-12-17 01:23:07 +00:00
|
|
|
out.putInt(myRAM[i]);
|
2002-05-13 19:17:32 +00:00
|
|
|
}
|
2007-01-14 16:17:57 +00:00
|
|
|
catch(const char* msg)
|
2002-05-13 19:17:32 +00:00
|
|
|
{
|
|
|
|
cerr << msg << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
cerr << "Unknown error in save state for " << cart << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
bool CartridgeFASC::load(Deserializer& in)
|
|
|
|
{
|
|
|
|
string cart = name();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(in.getString() != cart)
|
|
|
|
return false;
|
|
|
|
|
2005-12-17 01:23:07 +00:00
|
|
|
myCurrentBank = (uInt16) in.getInt();
|
2002-05-13 19:17:32 +00:00
|
|
|
|
2005-12-17 01:23:07 +00:00
|
|
|
uInt32 limit = (uInt32) in.getInt();
|
2002-05-13 19:17:32 +00:00
|
|
|
for(uInt32 i = 0; i < limit; ++i)
|
2005-12-17 01:23:07 +00:00
|
|
|
myRAM[i] = (uInt8) in.getInt();
|
2002-05-13 19:17:32 +00:00
|
|
|
}
|
2007-01-14 16:17:57 +00:00
|
|
|
catch(const char* msg)
|
2002-05-13 19:17:32 +00:00
|
|
|
{
|
|
|
|
cerr << msg << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
cerr << "Unknown error in load state for " << cart << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remember what bank we were in
|
|
|
|
bank(myCurrentBank);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2005-07-30 16:58:22 +00:00
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2007-01-14 16:17:57 +00:00
|
|
|
void CartridgeFASC::bank(uInt16 bank)
|
|
|
|
{
|
|
|
|
if(bankLocked) return;
|
|
|
|
|
|
|
|
// Remember what bank we're in
|
|
|
|
myCurrentBank = bank;
|
|
|
|
uInt16 offset = myCurrentBank * 4096;
|
|
|
|
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 = 0x1200; address < (0x1FF8U & ~mask);
|
|
|
|
address += (1 << shift))
|
|
|
|
{
|
|
|
|
access.directPeekBase = &myImage[offset + (address & 0x0FFF)];
|
|
|
|
mySystem->setPageAccess(address >> shift, access);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
int CartridgeFASC::bank()
|
|
|
|
{
|
|
|
|
return myCurrentBank;
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
int CartridgeFASC::bankCount()
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
bool CartridgeFASC::patch(uInt16 address, uInt8 value)
|
|
|
|
{
|
|
|
|
address = address & 0x0FFF;
|
|
|
|
myImage[myCurrentBank * 4096 + address] = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
uInt8* CartridgeFASC::getImage(int& size)
|
|
|
|
{
|
2005-07-30 16:58:22 +00:00
|
|
|
size = 12288;
|
|
|
|
return &myImage[0];
|
|
|
|
}
|