summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug.c b/debug.c
new file mode 100644
index 0000000..332ae16
--- /dev/null
+++ b/debug.c
@@ -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);
+}