mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
981cfe7283
* TRK full match * remove trk asm * ar done * cleanup some dolphin headers * more dolphin cleanup * cleanup / GD fully matched * almost all of GX fully matched * GX / Mtx full matched * most of OS done * pad done * most of VI * remove asm * forgot couple vec funcs * couple JUtility matches
32 lines
767 B
C
32 lines
767 B
C
#ifndef OSMEMORY_H
|
|
#define OSMEMORY_H
|
|
|
|
#include "dolphin/os/OSInterrupt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define OS_PROTECT_CHAN0 0
|
|
#define OS_PROTECT_CHAN1 1
|
|
#define OS_PROTECT_CHAN2 2
|
|
#define OS_PROTECT_CHAN3 3
|
|
|
|
#define OS_PROTECT_CONTROL_NONE 0x00
|
|
#define OS_PROTECT_CONTROL_READ 0x01
|
|
#define OS_PROTECT_CONTROL_WRITE 0x02
|
|
#define OS_PROTECT_CONTROL_RDWR (OS_PROTECT_CONTROL_READ | OS_PROTECT_CONTROL_WRITE)
|
|
|
|
static void MEMIntrruptHandler(__OSInterrupt interrupt, struct OSContext* context);
|
|
void OSProtectRange(u32 channel, void* address, u32 nBytes, u32 control);
|
|
static void Config24MB(void);
|
|
static void Config48MB(void);
|
|
static void RealMode(u32 config);
|
|
void __OSInitMemoryProtection(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* OSMEMORY_H */
|