projects
/
mdlife
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
per-line scrolling test
[mdlife]
/
src
/
debug.h
1
#ifndef DEBUG_H_
2
#define DEBUG_H_
3
4
#include <stdint.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_ */