491b288e92cd894d10a1a8d4d26ec0448e1dbe14
[mdlife] / src / debug.h
1 #ifndef DEBUG_H_
2 #define DEBUG_H_
3
4 #include <inttypes.h>
5
6 extern uint32_t dbgval[];
7
8 void dbg_init(void);
9
10 void dbg_printchar(int x, int y, char c);
11 void dbg_printstr(int x, int y, const char *str);
12
13 void dbg_setcursor(int x, int y);
14 void dbg_putchar(int c);
15
16 #endif  /* DEBUG_H_ */