Play-/Source/MIPSModule.h
jpd002 7108832682 Fixed some bugs in MIPSIV core.
Added experimental PspVm.

git-svn-id: http://svn.purei.org/purei/trunk@599 b36208d7-6611-0410-8bec-b1987f11c4a2
2010-03-04 05:35:41 +00:00

19 lines
301 B
C++

#ifndef _MIPSMODULE_H_
#define _MIPSMODULE_H_
#include <string>
#include <list>
#include "Types.h"
//Just used for debugging purposes
struct MIPSMODULE
{
std::string name;
uint32 begin;
uint32 end;
void* param;
};
typedef std::list<MIPSMODULE> MipsModuleList;
#endif