summaryrefslogtreecommitdiffstats
path: root/schedsim/rtems/debugio.c
blob: 7e886ac0c94ab8d111aabc53941227349b90f3dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *
 */

#include <rtems.h>
#include <rtems/bspIo.h>

#include <stdio.h>

void BSP_output_char_f(char c)
{
  putchar( c );
}

BSP_output_char_function_type           BSP_output_char = BSP_output_char_f;
BSP_polling_getchar_function_type       BSP_poll_char = NULL;