mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 09:09:45 +00:00
37 lines
930 B
C++
37 lines
930 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "MMC3.h"
|
|
|
|
class MMC3_ChrRam : public MMC3
|
|
{
|
|
private:
|
|
uint16_t _firstRamBank;
|
|
uint16_t _lastRamBank;
|
|
uint16_t _chrRamSize;
|
|
|
|
protected:
|
|
virtual uint16_t GetChrRamPageSize() override { return 0x400; }
|
|
virtual uint32_t GetChrRamSize() override { return _chrRamSize * 0x400; }
|
|
|
|
virtual void SelectCHRPage(uint16_t slot, uint16_t page, ChrMemoryType memoryType = ChrMemoryType::Default) override
|
|
{
|
|
if(page >= _firstRamBank && page <= _lastRamBank) {
|
|
memoryType = ChrMemoryType::ChrRam;
|
|
page -= _firstRamBank;
|
|
}
|
|
|
|
MMC3::SelectCHRPage(slot, page, memoryType);
|
|
}
|
|
|
|
virtual void StreamState(bool saving) override
|
|
{
|
|
MMC3::StreamState(saving);
|
|
Stream(_firstRamBank, _lastRamBank, _chrRamSize);
|
|
}
|
|
|
|
public:
|
|
MMC3_ChrRam(uint16_t firstRamBank, uint16_t lastRamBank, uint16_t chrRamSize) : _firstRamBank(firstRamBank), _lastRamBank(lastRamBank), _chrRamSize(chrRamSize)
|
|
{
|
|
}
|
|
};
|