mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-31 09:21:28 -04:00
4b30f1a654
* internal_rsp; move size_t and NULL to ultratypes.h * guint.h * Move system variables to os_system.h * controller, pi and vi * osint.h * piint.h * siint, ucode, viint, voiceinternal * Remove remaining variables from variables.h * format * final renames * bss * review * review
12 lines
260 B
C
12 lines
260 B
C
#ifndef PR_OS_INTERNAL_RSP_H
|
|
#define PR_OS_INTERNAL_RSP_H
|
|
|
|
#include "ultratypes.h"
|
|
|
|
u32 __osSpGetStatus(void);
|
|
void __osSpSetStatus(u32 data);
|
|
s32 __osSpSetPc(void* pc);
|
|
s32 __osSpRawStartDma(s32 direction, void* devAddr, void* dramAddr, size_t size);
|
|
|
|
#endif
|