SSBM Decomp
Loading...
Searching...
No Matches
memmap.h
Go to the documentation of this file.
1#ifndef _METROTRK_MEMMAP_H
2#define _METROTRK_MEMMAP_H
3
4#include <Runtime/platform.h>
5
6typedef struct memRange {
7 /* 0x00 */ u8* start;
8 /* 0x04 */ u8* end;
9 /* 0x08 */ bool readable;
10 /* 0x0C */ bool writeable;
11} memRange; // size = 0x10
12
13const memRange gTRKMemMap[] = { { (u8*) 0x00000000, (u8*) 0xFFFFFFFF, true,
14 true } };
15
16#endif
unsigned char u8
Definition types.h:5
const memRange gTRKMemMap[]
Definition memmap.h:13
Definition memmap.h:6
u8 * end
Definition memmap.h:8
bool writeable
Definition memmap.h:10
u8 * start
Definition memmap.h:7
bool readable
Definition memmap.h:9