Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 3843 → Rev 3844

/trunk/kernel/arch/mips32/src/drivers/msim.c
58,8 → 58,9
};
 
/** Putchar that works with MSIM & gxemul */
void msim_write(chardev_t *dev, const char ch)
void msim_write(chardev_t *dev, const char ch, bool silent)
{
if (!silent)
*((char *) MSIM_VIDEORAM) = ch;
}