Ignore:
File:
1 edited

Legend:

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

    red88c8e rde1712e  
    3333#include <arch/ucb.h>
    3434
    35 void putwchar(wchar_t ch)
     35void putchar(const 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, '?');
     40                htif_cmd(HTIF_DEVICE_CONSOLE, HTIF_CONSOLE_PUTC, U_SPECIAL);
    4141}
Note: See TracChangeset for help on using the changeset viewer.