mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00

Cleaned up a lot of code. git-svn-id: http://svn.purei.org/purei/trunk@293 b36208d7-6611-0410-8bec-b1987f11c4a2
18 lines
434 B
C++
18 lines
434 B
C++
#ifndef _MEMORYUTILS_H_
|
|
#define _MEMORYUTILS_H_
|
|
|
|
#include "MIPS.h"
|
|
|
|
class CMemoryUtils
|
|
{
|
|
public:
|
|
//Proxies
|
|
static uint32 GetByteProxy(CMIPS*, uint32);
|
|
static uint32 GetHalfProxy(CMIPS*, uint32);
|
|
static uint32 GetWordProxy(CMIPS*, uint32);
|
|
static void SetByteProxy(CMIPS*, uint32, uint32);
|
|
static void SetHalfProxy(CMIPS*, uint32, uint32);
|
|
static void SetWordProxy(CMIPS*, uint32, uint32);
|
|
};
|
|
|
|
#endif
|