mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-17 09:39:18 +01:00
20 lines
378 B
C
20 lines
378 B
C
|
#ifndef __KERNEL_FUNCTIONS_H_
|
||
|
#define __KERNEL_FUNCTIONS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "kernel_defs.h"
|
||
|
|
||
|
void SetupKernelCallback(void);
|
||
|
|
||
|
void SC0x25_KernelCopyData(u32 addr, u32 src, u32 len);
|
||
|
void SC0x36_KernelReadDBATs(bat_table_t * table);
|
||
|
void SC0x37_KernelWriteDBATs(bat_table_t * table);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __KERNEL_FUNCTIONS_H_
|