Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 588 → Rev 587

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