Пример #1
0
/* bconout5 - raw console output. */
LONG bconout5(WORD dev, WORD ch)
{
#if CONF_SERIAL_CONSOLE
    /* The terminal will interpret the control characters, anyway */
    bconout(1, ch);
#endif
    ascii_out(ch);
    return 1L;
}
Пример #2
0
/* bconout5 - raw console output. */
LONG bconout5(WORD dev, WORD ch)
{
    ascii_out(ch);
    return 1L;
}