mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
22 lines
288 B
C
22 lines
288 B
C
#ifndef BATCONFIG_H
|
|
#define BATCONFIG_H
|
|
|
|
#include "types.h"
|
|
#include "dolphin/os/OSMemory.h"
|
|
#include "dolphin/os/OSInterrupt.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void Config24MB();
|
|
void Config48MB();
|
|
void ReconfigBATs();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |