source: rtems-schedsim/schedsim/rtems/debugio.c @ a2aad55

Last change on this file since a2aad55 was a2aad55, checked in by Joel Sherrill <joel.sherrill@…>, on 05/01/13 at 00:41:56

Remove CVS $

  • Property mode set to 100644
File size: 268 bytes
Line 
1/*
2 *
3 */
4
5#include <rtems.h>
6#include <rtems/bspIo.h>
7
8#include <stdio.h>
9
10void BSP_output_char_f(char c)
11{
12  putchar( c );
13}
14
15BSP_output_char_function_type           BSP_output_char = BSP_output_char_f;
16BSP_polling_getchar_function_type       BSP_poll_char = NULL;
17
Note: See TracBrowser for help on using the repository browser.