blob: e1d88accac2c72de761c942a2aaa7996ce4b49f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PR_OS_INTERNAL_SI_H
#define PR_OS_INTERNAL_SI_H
#include "ultratypes.h"
#include "libc/stdint.h"
s32 __osSiRawWriteIo(uintptr_t devAddr, u32 data);
s32 __osSiRawReadIo(uintptr_t devAddr, u32* data);
s32 __osSiRawStartDma(s32 direction, void* dramAddr);
#endif
|