summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/kolibri_debug.h
blob: a6dc61ed485db70d907655f7fc7297df71441805 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef KOLIBRI_DEBUG_H
#define KOLIBRI_DEBUG_H

/* Write a printf() like function (variable argument list) for 
   writing to debug board */

void debug_board_write_byte(const char ch);
void debug_board_write_str(const char* str);
void debug_board_printf(const char *format, ...);

#endif /* KOLIBRI_DEBUG_H */