mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
19 lines
284 B
C
19 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
|