Casio_asm/old/debug.h

13 lines
145 B
C
Raw Normal View History

2018-06-29 10:54:22 +02:00
//#define DO_DEBUG
#ifdef DO_DEBUG
#include <stdio.h>
#define debug(...) printf(__VA_ARGS__)
#else
#define debug(...) do {} while(0)
#endif