mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-20 15:41:10 -04:00
14 lines
268 B
C
14 lines
268 B
C
#ifndef PR_OS_INTERNAL_SI_H
|
|
#define PR_OS_INTERNAL_SI_H
|
|
|
|
#include "ultratypes.h"
|
|
#include "stdint.h"
|
|
|
|
|
|
s32 __osSiRawWriteIo(uintptr_t devAddr, u32 data);
|
|
s32 __osSiRawReadIo(uintptr_t devAddr, u32* data);
|
|
s32 __osSiRawStartDma(s32 direction, void* dramAddr);
|
|
|
|
|
|
#endif
|