Subversion Repositories HelenOS

Rev

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

Rev 2465 Rev 3844
Line 131... Line 131...
131
/** Putchar that works with gxemul.
131
/** Putchar that works with gxemul.
132
 *
132
 *
133
 * @param dev Not used.
133
 * @param dev Not used.
134
 * @param ch Characted to be printed.
134
 * @param ch Characted to be printed.
135
 */
135
 */
136
static void gxemul_write(chardev_t *dev, const char ch)
136
static void gxemul_write(chardev_t *dev, const char ch, bool silent)
137
{
137
{
-
 
138
    if (!silent)
138
    *((char *) gxemul_hw_map.videoram) = ch;
139
        *((char *) gxemul_hw_map.videoram) = ch;
139
}
140
}
140
 
141
 
141
/** Enables gxemul keyboard (interrupt unmasked).
142
/** Enables gxemul keyboard (interrupt unmasked).
142
 *
143
 *
143
 * @param dev Not used.
144
 * @param dev Not used.