Play-/Source/MIPSModule.h
jpd002 959d380eb6 Some base changes.
git-svn-id: http://svn.purei.org/purei/trunk@433 b36208d7-6611-0410-8bec-b1987f11c4a2
2008-12-02 23:55:45 +00:00

18 lines
284 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;
};
typedef std::list<MIPSMODULE> MipsModuleList;
#endif