blob: b98e4f6f72ff8bf0e0fc9604d4e7ea3fa3b3d857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Debugging routines for 680 project.
*
* Includes debug output.
*
* Copyright 2010, Astrid Smith
* GPL
*/
#include <stdio.h>
void char_draw(char c)
{
putchar((short)c);
}
|