Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/riscv64/src/putchar.c

    rde1712e red88c8e  
    3333#include <arch/ucb.h>
    3434
    35 void putchar(const wchar_t ch)
     35void putwchar(wchar_t ch)
    3636{
    3737        if (ascii_check(ch))
    3838                htif_cmd(HTIF_DEVICE_CONSOLE, HTIF_CONSOLE_PUTC, ch);
    3939        else
    40                 htif_cmd(HTIF_DEVICE_CONSOLE, HTIF_CONSOLE_PUTC, U_SPECIAL);
     40                htif_cmd(HTIF_DEVICE_CONSOLE, HTIF_CONSOLE_PUTC, '?');
    4141}
Note: See TracChangeset for help on using the changeset viewer.