mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -04:00
f070ee948f
* getLayerNo_common_common finally matched * dolphin ai / ar / card work from prime decomp * work on dolphin dvd / dsp / db * more dolphin os work * si work * remove asm * build fix
17 lines
211 B
C
17 lines
211 B
C
#ifndef DSP_DEBUG_H
|
|
#define DSP_DEBUG_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __DSP_debug_printf(const char* fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DSP_DEBUG_H */
|