1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Debugging routines for 680 project. * * Includes debug output. * * Copyright 2010, Astrid Smith * GPL */ //#include <stdio.h> short putchar(short c) { return c; } void char_draw(char c) { putchar((short)c); }