project64/Source/Project64/N64 System/Mips/Sram.h

28 lines
1.0 KiB
C
Raw Normal View History

2012-12-19 09:30:18 +00:00
/****************************************************************************
* *
* Project 64 - A Nintendo 64 emulator. *
* 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
class CSram
{
public:
CSram(bool ReadOnly);
~CSram();
void DmaFromSram(BYTE * dest, int StartOffset, int len);
void DmaToSram(BYTE * Source, int StartOffset, int len);
private:
2015-05-02 22:14:19 +00:00
bool LoadSram();
bool m_ReadOnly;
HANDLE m_hFile;
2015-01-31 19:27:27 +00:00
};