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
|
|
|
|
2013-03-22 05:47:20 +00:00
|
|
|
class CFlashram :
|
2015-12-13 07:10:40 +00:00
|
|
|
private CDebugSettings
|
2010-06-22 20:36:28 +00:00
|
|
|
{
|
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,
|
|
|
|
};
|
2010-06-22 20:36:28 +00:00
|
|
|
|
|
|
|
public:
|
2015-12-13 07:10:40 +00:00
|
|
|
CFlashram(bool ReadOnly);
|
|
|
|
~CFlashram();
|
2010-06-22 20:36:28 +00:00
|
|
|
|
2016-01-04 20:34:16 +00:00
|
|
|
void DmaFromFlashram(uint8_t * dest, int32_t StartOffset, int32_t len);
|
|
|
|
void DmaToFlashram(uint8_t * Source, int32_t StartOffset, int32_t len);
|
2015-12-13 07:10:40 +00:00
|
|
|
uint32_t ReadFromFlashStatus(uint32_t PAddr);
|
|
|
|
void WriteToFlashCommand(uint32_t Value);
|
2010-06-22 20:36:28 +00:00
|
|
|
|
|
|
|
private:
|
2016-01-04 20:34:16 +00:00
|
|
|
CFlashram(void); // Disable default constructor
|
|
|
|
CFlashram(const CFlashram&); // Disable copy constructor
|
|
|
|
CFlashram& operator=(const CFlashram&); // Disable assignment
|
|
|
|
|
2015-12-06 09:59:58 +00:00
|
|
|
bool LoadFlashram();
|
2010-06-22 20:36:28 +00:00
|
|
|
|
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;
|
2016-04-11 08:28:18 +00:00
|
|
|
CFile m_File;
|
2010-06-22 20:36:28 +00:00
|
|
|
};
|