mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-08 03:27:56 +03:00

Added experimental PspVm. git-svn-id: http://svn.purei.org/purei/trunk@599 b36208d7-6611-0410-8bec-b1987f11c4a2
19 lines
301 B
C++
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
|