home *** CD-ROM | disk | FTP | other *** search
-
- /********** debug macros ***********/
- #define MYDEBUG 1
- void kprintf(UBYTE *fmt,...);
- void dprintf(UBYTE *fmt,...);
- #define DEBTIME 0
- #define bug printf
- #if MYDEBUG
- #define D(x) (x); if(DEBTIME>0) Delay(DEBTIME);
- #else
- #define D(x) ;
- #endif /* MYDEBUG */
- /********** end of debug macros **********/
-