Fex-II/inc/debug.h

18 lines
280 B
C
Raw Normal View History

2024-02-22 23:34:30 -06:00
//
// Created by auric on 2/22/24.
//
#ifndef DEBUG_H
#define DEBUG_H
#include "nprint.h"
2024-02-28 20:43:02 -06:00
#include "config.h"
2024-02-22 23:34:30 -06:00
#ifdef debugEnabled
#define DEBUG_PRINT(fmt, ...) nprint("D", fmt, ##__VA_ARGS__)
#else
2024-02-28 20:43:02 -06:00
#define DEBUG_PRINT(fmt, ...) do {} while (0)
2024-02-22 23:34:30 -06:00
#endif
#endif //DEBUG_H