Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 587 → Rev 588

/kernel/trunk/arch/mips32/src/drivers/arc.c
209,7 → 209,9
}
if (ch == '\r')
ch = '\n';
 
if (ch == 0x7f)
ch = '\b';
chardev_push_character(&console, ch);
}
 
/kernel/trunk/arch/mips32/src/drivers/msim.c
61,6 → 61,7
cp0_mask_int(MSIM_KBD_IRQ);
}
 
#include <print.h>
/** Process keyboard interrupt. */
static void msim_interrupt(int n, void *stack)
{
69,6 → 70,8
ch = *((char *) MSIM_KBD_ADDRESS);
if (ch =='\r')
ch = '\n';
if (ch == 0x7f)
ch = '\b';
chardev_push_character(&console, ch);
}