TARGET DE2-70: Memory tester was broken -> Fixed and sped up
[yari.git] / gdbstub / gdb-support.c-none
blob3e6167ba7c3f23ff8423b7d7b44d4795f5bb4f62
1 /*
2  *   These are the low-level serial IO routines for the GDB stub
3  *   This is platform-specific, since it deals with the serial registers directly
4  */
6 #include <stdio.h>
8 int
9 putDebugChar(unsigned char ch)
11         putchar(ch);
13         return 1;
16 char
17 getDebugChar(void)
19         return getchar();