diff options
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index d312682..b0640c6 100644 --- a/include/common.h +++ b/include/common.h @@ -64,8 +64,10 @@ typedef volatile unsigned char vu_char; #ifdef DEBUG #define debug(fmt,args...) printf (fmt ,##args) +#define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args); #else #define debug(fmt,args...) +#define debugX(level,fmt,args...) #endif /* DEBUG */ typedef void (interrupt_handler_t)(void *); |