pi1541/debug.h
2018-05-20 14:53:34 +10:00

16 lines
No EOL
187 B
C

#ifndef DEBUG_H
#define DEBUG_H
#ifdef __ASSEMBLER__
#else
#include <stdio.h>
#endif
#ifdef DEBUG
#define DEBUG_LOG(...) printf(__VA_ARGS__)
#else
#define DEBUG_LOG(...)
#endif
#endif