mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
18 lines
284 B
C++
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
|