Subversion Repositories HelenOS

Rev

Rev 3848 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3848 Rev 3880
Line 74... Line 74...
74
void msim_disable(chardev_t *dev)
74
void msim_disable(chardev_t *dev)
75
{
75
{
76
    cp0_mask_int(MSIM_KBD_IRQ);
76
    cp0_mask_int(MSIM_KBD_IRQ);
77
}
77
}
78
 
78
 
79
#include <print.h>
-
 
80
/** Read character using polling, assume interrupts disabled */
79
/** Read character using polling, assume interrupts disabled */
81
static char msim_do_read(chardev_t *dev)
80
static char msim_do_read(chardev_t *dev)
82
{
81
{
83
    char ch;
82
    char ch;
84
   
83