pi1541/debug.h

16 lines
187 B
C
Raw Normal View History

2018-05-20 04:53:34 +00:00
#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