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 <platform.h>
5
6#include "MetroTRK/trk.h"
7
8typedef struct memRange {
9 /* 0x00 */ u8* start;
10 /* 0x04 */ u8* end;
11 /* 0x08 */ bool readable;
12 /* 0x0C */ bool writeable;
13} memRange; // size = 0x10
14
15const memRange gTRKMemMap[] = { { (u8*) 0x00000000, (u8*) 0xFFFFFFFF, true,
16 true } };
17
18#endif
const memRange gTRKMemMap[]
Definition memmap.h:15
unsigned char u8
An unsigned 8-bit integer.
Definition platform.h:20
Definition memmap.h:8
u8 * end
Definition memmap.h:10
bool writeable
Definition memmap.h:12
u8 * start
Definition memmap.h:9
bool readable
Definition memmap.h:11