mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
f26e77ba40
* LINKER_FILES in makefile
* COLPOLY_GET_NORMAL
* math header
* libc
* M_PI for cosf and sinf files
* MAXFLOAT
* Revert "MAXFLOAT"
This reverts commit 96b75ffaa8.
* Remove SHT_MINV
* SHRT_MAX
* Add M_PI
* Angle macros
* f suffix
* Format
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
|