project64/Source/Project64-core/N64System/Mips/FlashRam.h

45 lines
1.6 KiB
C
Raw Normal View History

2012-12-19 09:30:18 +00:00
/****************************************************************************
* *
2015-11-10 05:21:49 +00:00
* Project64 - A Nintendo 64 emulator. *
2012-12-19 09:30:18 +00:00
* http://www.pj64-emu.com/ *
* Copyright (C) 2012 Project64. All rights reserved. *
* *
* License: *
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
* *
****************************************************************************/
#pragma once
2015-12-06 09:59:58 +00:00
#include <Project64-core/Settings/DebugSettings.h>
2012-12-19 09:30:18 +00:00
class CFlashram :
2015-12-13 07:10:40 +00:00
private CDebugSettings
{
2015-12-13 07:10:40 +00:00
enum Modes
{
FLASHRAM_MODE_NOPES = 0,
FLASHRAM_MODE_ERASE = 1,
FLASHRAM_MODE_WRITE = 2,
FLASHRAM_MODE_READ = 3,
FLASHRAM_MODE_STATUS = 4,
};
public:
2015-12-13 07:10:40 +00:00
CFlashram(bool ReadOnly);
~CFlashram();
2015-12-13 07:10:40 +00:00
void DmaFromFlashram(uint8_t * dest, int StartOffset, int len);
void DmaToFlashram(uint8_t * Source, int StartOffset, int len);
uint32_t ReadFromFlashStatus(uint32_t PAddr);
void WriteToFlashCommand(uint32_t Value);
private:
2015-12-06 09:59:58 +00:00
bool LoadFlashram();
2015-12-06 09:59:58 +00:00
uint8_t * m_FlashRamPointer;
Modes m_FlashFlag;
uint64_t m_FlashStatus;
uint32_t m_FlashRAM_Offset;
bool m_ReadOnly;
void * m_hFile;
};