mirror of
https://github.com/wiiu-env/WiiUPluginLoaderGUI.git
synced 2024-11-29 12:34:16 +01:00
21 lines
410 B
C
21 lines
410 B
C
#ifndef __WUPS_SYSCALLS_H_
|
|
#define __WUPS_SYSCALLS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "kernel_defs.h"
|
|
|
|
void SC0x0A_KernelWriteSRs(sr_table_t * table);
|
|
void SC0x36_KernelReadSRs(sr_table_t * table);
|
|
void SC0x37_KernelReadPTE(uint32_t* dest, uint32_t size);
|
|
void SC0x09_KernelWritePTE(uint32_t* addr,uint32_t size);
|
|
void KernelTest();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __WUPS_SYSCALLS_H_
|