mirror of
https://github.com/zeldaret/tp
synced 2026-09-06 10:55:34 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
28 lines
636 B
C
28 lines
636 B
C
#ifndef _DOLPHIN_DSP_INTERNAL_H_
|
|
#define _DOLPHIN_DSP_INTERNAL_H_
|
|
|
|
#include <dolphin/dsp.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern DSPTaskInfo* __DSP_first_task;
|
|
extern DSPTaskInfo* __DSP_last_task;
|
|
extern DSPTaskInfo* __DSP_curr_task;
|
|
extern DSPTaskInfo* __DSP_tmp_task;
|
|
|
|
__declspec(weak) void __DSPHandler(__OSInterrupt, OSContext*);
|
|
void __DSP_exec_task(DSPTaskInfo*, DSPTaskInfo*);
|
|
void __DSP_boot_task(DSPTaskInfo*);
|
|
void __DSP_insert_task(DSPTaskInfo*);
|
|
void __DSP_add_task(DSPTaskInfo* task);
|
|
void __DSP_remove_task(DSPTaskInfo* task);
|
|
void __DSP_debug_printf(const char* fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|