/* ************************************************************************** */
/* DEBUG MACROS                                                               */
/*                                                                            */
/* ************************************************************************** */

#ifdef DEBUG
#define DEBUGLF()    Printf("Line %d, File %s\n",__LINE__, __FILE__);
#define DEBUGS(x)    Printf("%s\n",x);
#define DEBUGV(x,y)  Printf("%s, 0x0.8X\n",x,y);
#else
#define DEBUGLF()
#define DEBUGS(x)
#define DEBUGV(x,y)
#endif

