Subversion Repositories HelenOS

Rev

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

Rev 2069 Rev 2070
Line 117... Line 117...
117
}
117
}
118
 
118
 
119
static void curs_goto(int row, int col)
119
static void curs_goto(int row, int col)
120
{
120
{
121
    async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
121
    async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
122
   
-
 
123
}
122
}
124
 
123
 
125
static void set_style(style_t *style)
124
static void set_style(style_t *style)
126
{
125
{
127
    async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color,
126
    async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color,
Line 134... Line 133...
134
}
133
}
135
 
134
 
136
static void prtchr(char c, int row, int col)
135
static void prtchr(char c, int row, int col)
137
{
136
{
138
    async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col);
137
    async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col);
139
   
-
 
140
}
138
}
141
 
139
 
142
/** Check key and process special keys.
140
/** Check key and process special keys.
143
 *
141
 *
144
 * */
142
 * */