2017-10-06 09:48:52 -04:00
|
|
|
//
|
|
|
|
// Copyright (c) 2017 The Altra64 project contributors
|
|
|
|
// See LICENSE file in the project root for full license information.
|
|
|
|
//
|
2016-09-07 17:11:50 -04:00
|
|
|
|
2017-10-11 11:53:18 -04:00
|
|
|
#ifndef _DEBUG_H
|
|
|
|
#define _DEBUG_H
|
|
|
|
|
2016-09-07 17:11:50 -04:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define TRACEF(disp, text, ...) dbg_printf(disp, text, __VA_ARGS__);
|
|
|
|
#define TRACE(disp, text) printText(text, 3, -1, disp);
|
|
|
|
#else
|
|
|
|
#define TRACEF(disp, text, ...) do { if (0) dbg_printf(disp, text, __VA_ARGS__); } while (0)
|
2017-10-25 05:40:17 -04:00
|
|
|
#define TRACE(disp, text) do { if (0) printText(text, 3, -1, disp); } didplay_show(disp); while (0)
|
2017-10-12 19:23:59 -04:00
|
|
|
#endif
|
2017-10-11 11:53:18 -04:00
|
|
|
|
2017-10-12 19:23:59 -04:00
|
|
|
void dbg_printf(display_context_t disp, const char *fmt, ...);
|
2017-10-11 11:53:18 -04:00
|
|
|
|
|
|
|
#endif
|