diff options
Diffstat (limited to 'debug.c')
| -rw-r--r-- | debug.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +/* Debugging routines for 680 project. + * + * Includes debug output. + * + * Copyright 2010, Duncan Smith + * GPL + */ + +#include <stdio.h> + +void char_draw(char c) +{ + putchar((short)c); +} |
