2016-10-27 00:34:10 +00:00
|
|
|
#ifndef WIIU_DBG_H
|
|
|
|
#define WIIU_DBG_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
//void wait_for_input(void);
|
|
|
|
//void dump_result_value(Result val);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//#define DEBUG_HOLD() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);wait_for_input();}while(0)
|
2016-11-10 13:24:20 +00:00
|
|
|
#define DEBUG_LINE() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);}while(0)
|
2016-10-27 00:34:10 +00:00
|
|
|
#define DEBUG_STR(X) printf( "%s: %s\n", #X, (char*)(X))
|
|
|
|
#define DEBUG_VAR(X) printf( "%-20s: 0x%08X\n", #X, (u32)(X))
|
2016-11-06 10:55:56 +00:00
|
|
|
#define DEBUG_VAR2(X) printf( "%-20s: 0x%08X (%i)\n", #X, (u32)(X), (int)(X))
|
2016-10-27 00:34:10 +00:00
|
|
|
#define DEBUG_INT(X) printf( "%-20s: %10i\n", #X, (s32)(X))
|
2016-11-05 14:01:43 +00:00
|
|
|
#define DEBUG_FLOAT(X) printf( "%-20s: %10.3f\n", #X, (float)(X))
|
2016-10-27 00:34:10 +00:00
|
|
|
#define DEBUG_VAR64(X) printf( #X"\r\t\t\t\t : 0x%016llX\n", (u64)(X))
|
|
|
|
//#define DEBUG_ERROR(X) do{if(X)dump_result_value(X);}while(0)
|
|
|
|
#define PRINTFPOS(X,Y) "\x1b["#X";"#Y"H"
|
2016-11-02 21:06:15 +00:00
|
|
|
#define PRINTFPOS_STR(X,Y) "\x1b[" X ";" Y "H"
|
|
|
|
#define PRINTF_LINE(X) "\x1b[" X ";0H"
|
2016-10-27 00:34:10 +00:00
|
|
|
|
|
|
|
#endif // WIIU_DBG_H
|