#ifndef _DEBUGGER_H_ #define _DEBUGGER_H_ void initDebug(); void dbgI(int x); void dbgC(char x); void dbgD(double x); void dbgS(char *x); #endif